/* ============================================================
   JuegaLoft — Premium Game Space | Main Stylesheet
   Font: Syne + Outfit from Google Fonts
   Colors: Electric Blue #00D4FF | Magenta #FF2D9B | 
           Yellow #FFD700 | Dark #0D0D1A | White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --blue: #00D4FF;
  --magenta: #FF2D9B;
  --yellow: #FFD700;
  --green: #00FF88;
  --dark: #0D0D1A;
  --dark2: #13132A;
  --dark3: #1A1A35;
  --gray: #8A8AAA;
  --light: #F0F0FF;
  --white: #FFFFFF;

  --font-heading: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-glow-blue: 0 0 30px rgba(0, 212, 255, 0.3);
  --shadow-glow-magenta: 0 0 30px rgba(255, 45, 155, 0.3);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

/* ===== SELECTION ===== */
::selection { background: var(--magenta); color: var(--white); }

/* ===== UTILITY CLASSES ===== */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

.text-gradient-blue {
  background: linear-gradient(135deg, var(--blue), #0080FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-magenta {
  background: linear-gradient(135deg, var(--magenta), #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-yellow {
  background: linear-gradient(135deg, var(--yellow), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tag-blue { background: rgba(0, 212, 255, 0.15); color: var(--blue); border: 1px solid rgba(0, 212, 255, 0.3); }
.tag-magenta { background: rgba(255, 45, 155, 0.15); color: var(--magenta); border: 1px solid rgba(255, 45, 155, 0.3); }
.tag-yellow { background: rgba(255, 215, 0, 0.15); color: var(--yellow); border: 1px solid rgba(255, 215, 0, 0.3); }

.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #0080FF);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.btn-magenta {
  background: linear-gradient(135deg, var(--magenta), #FF8C00);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 45, 155, 0.4);
}
.btn-magenta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 45, 155, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-2px);
}

.btn-yellow {
  background: linear-gradient(135deg, var(--yellow), #FFB300);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

/* ===== NAVIGATION ===== */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#main-nav.scrolled {
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-logo .logo-text span { color: var(--blue); }

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

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(0, 212, 255, 0.1);
}

.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(13, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--blue); }

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 26, 0.85) 0%,
    rgba(0, 100, 180, 0.3) 50%,
    rgba(13, 13, 26, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content .tag { margin-bottom: 24px; }

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  margin-top: 80px;
  flex-wrap: wrap;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}

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

/* ===== MARQUEE ===== */
.marquee-section {
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  flex-shrink: 0;
}

.marquee-item::before {
  content: '●';
  font-size: 0.6rem;
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== FEATURES SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(0, 212, 255, 0.2); }

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.feature-icon-blue { background: rgba(0, 212, 255, 0.15); }
.feature-icon-magenta { background: rgba(255, 45, 155, 0.15); }
.feature-icon-yellow { background: rgba(255, 215, 0, 0.15); }
.feature-icon-green { background: rgba(0, 255, 136, 0.15); }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.space-card {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.space-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 212, 255, 0.2);
}

.space-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.space-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.space-card:hover .space-card-img img { transform: scale(1.07); }

.space-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
}

.space-card-body { padding: 28px; }

.space-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.space-card-body p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.space-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.space-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}

.space-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  position: relative;
}

.two-col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.two-col-img::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-lg) + 12px);
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  z-index: -1;
  opacity: 0.3;
}

.two-col-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 20px;
}

.two-col-content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.check-list { margin: 24px 0 36px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.check-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(0, 212, 255, 0.15);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.g1 { grid-column: 1 / 7; grid-row: 1; height: 320px; }
.g2 { grid-column: 7 / 10; grid-row: 1; height: 320px; }
.g3 { grid-column: 10 / 13; grid-row: 1; height: 320px; }
.g4 { grid-column: 1 / 4; grid-row: 2; height: 260px; }
.g5 { grid-column: 4 / 8; grid-row: 2; height: 260px; }
.g6 { grid-column: 8 / 13; grid-row: 2; height: 260px; }
.g7 { grid-column: 1 / 5; grid-row: 3; height: 280px; }
.g8 { grid-column: 5 / 9; grid-row: 3; height: 280px; }
.g9 { grid-column: 9 / 13; grid-row: 3; height: 280px; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 80px rgba(0, 212, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.8;
  transition: var(--transition);
}

.lightbox-close:hover { opacity: 1; color: var(--magenta); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 1rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-text::before { content: '"'; }
.testimonial-text::after { content: '"'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-info .name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-info .location {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 0, 255, 0.05));
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}

.pricing-card:hover { transform: translateY(-6px); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-price .period {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
}

.pricing-features {
  margin: 28px 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: var(--gray);
  opacity: 0.5;
}

.pricing-features li.disabled::before {
  content: '✕';
  color: var(--gray);
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--blue);
}

.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--blue); background: rgba(0, 212, 255, 0.1); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 80px 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--dark3), #1A0A30);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 45, 155, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== INFO CARDS ===== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.info-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.info-card:hover { border-color: rgba(0, 212, 255, 0.25); transform: translateY(-4px); }

.info-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.info-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card p { color: var(--gray); font-size: 0.85rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,26,0.7), var(--dark));
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 20px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 24px;
}

.breadcrumb a { color: var(--blue); }
.breadcrumb span { opacity: 0.4; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-text .value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.hours-grid {
  background: var(--dark2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hours-grid h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--blue);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.hours-row:last-child { border: none; }
.hours-row .time { color: var(--gray); }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(0, 212, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group select option { background: var(--dark2); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success .check-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

/* ===== MAP ===== */
.map-section { padding: 0 0 100px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) saturate(1.2);
}

/* ===== ABOUT PAGE ===== */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.value-card {
  background: var(--dark2);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.value-card:hover { border-color: rgba(255, 45, 155, 0.3); transform: translateY(-4px); }

.value-card .emoji { font-size: 2.5rem; margin-bottom: 16px; }

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

/* ===== TEAM SECTION ===== */
.team-img-wrap {
  position: relative;
}

.team-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.team-stats-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
  min-width: 160px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.team-stats-overlay .big-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  color: var(--white);
}

.team-stats-overlay .sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--dark3);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  z-index: 9990;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  display: none;
}

#cookie-banner.show { display: block; animation: slideUp 0.4s ease; }

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

#cookie-banner p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

#cookie-banner p a { color: var(--blue); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--blue);
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 28px 0 10px;
}

.legal-content p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
#main-footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
}

.footer-brand .logo-text span { color: var(--blue); }

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--blue); }

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9980;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 48px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 70px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-stats { gap: 32px; }

  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .two-col-img img { height: 300px; }
  .team-img-wrap img { height: 320px; }
  .team-stats-overlay { right: 0; bottom: -10px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g1, .g2, .g3, .g4, .g5, .g6, .g7, .g8, .g9 {
    grid-column: auto;
    grid-row: auto;
    height: 200px;
  }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

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

  .cta-banner { padding: 50px 28px; }

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

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g1,.g2,.g3,.g4,.g5,.g6,.g7,.g8,.g9 { height: 220px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== NEON GLOW TEXT ===== */
.neon-blue { text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.4); }
.neon-magenta { text-shadow: 0 0 20px rgba(255, 45, 155, 0.8), 0 0 40px rgba(255, 45, 155, 0.4); }

/* ===== HORIZONTAL LINE ===== */
.divider {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  margin: 0 auto 24px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 45, 155, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}
