/* Goxtech — Dark Theme + Orange Accents */

/* ═══════ RESET & BASE ═══════ */
body {
  opacity: 0;
  transition: opacity 0.4s ease;
  background: #0B0B0D;
  color: #E5E7EB;
}
body.loaded { opacity: 1; }
html { scroll-behavior: smooth; }

/* ═══════ NAVBAR ═══════ */
.navbar-glass {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 11, 13, 0.7);
  border-bottom: 1px solid rgba(255, 107, 0, 0.08);
  transition: all 0.3s ease;
}
.navbar-glass.scrolled {
  background: rgba(11, 11, 13, 0.95);
  border-bottom-color: rgba(255, 107, 0, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ═══════ HERO ═══════ */
.hero-gradient {
  background: linear-gradient(180deg, #0F0F14 0%, #0B0B0D 100%);
  position: relative;
  overflow: hidden;
}
.hero-gradient::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-photo-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.hero-photo-container img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.hero-photo-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 11, 13, 0.6) 100%);
  border-radius: 24px;
  pointer-events: none;
}

/* ═══════ SECTIONS ═══════ */
.section-dark { background: #0B0B0D; }
.section-alt  { background: #0F0F14; }
.section-dark-accent {
  background: linear-gradient(180deg, #0F0F14 0%, #0B0B0D 100%);
}

/* ═══════ CARDS ═══════ */
.card-dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  transition: all 0.4s ease;
}
.card-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.card-hover {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 0, 0.25);
}

/* Service card grid (Clarika style) */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, #FF6B00, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}
.service-card:hover::before { opacity: 1; }

/* Icon container */
.icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.service-card:hover .icon-box {
  transform: scale(1.1);
}

/* ═══════ PAIN POINTS ═══════ */
.pain-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.check-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: #10B981;
  margin-top: 2px;
}

/* ═══════ METHODOLOGY ═══════ */
.method-step {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(255, 107, 0, 0.2);
  transition: border-color 0.3s ease;
}
.method-step:hover {
  border-left-color: #FF6B00;
}
.method-step .step-number {
  position: absolute;
  left: -16px; top: 0;
  width: 30px; height: 30px;
  background: #FF6B00;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

/* ═══════ CTA BREAK ═══════ */
.cta-break {
  position: relative;
  overflow: hidden;
}
.cta-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════ SCROLLING BANNER ═══════ */
@keyframes scrollText {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.scroll-banner {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 107, 0, 0.1);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
  background: rgba(255, 107, 0, 0.03);
}
.scroll-text {
  animation: scrollText 25s linear infinite;
  display: inline-block;
}

/* ═══════ GRADIENT TEXT ═══════ */
.gradient-text {
  background: linear-gradient(135deg, #FF6B00, #FF9A44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-line::before {
  content: '';
  display: block;
  width: 40px; height: 3px;
  background: #FF6B00;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ═══════ BUTTONS ═══════ */
.btn-glow {
  background: #FF6B00;
  color: white;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}
.btn-glow:hover {
  background: #E55F00;
  box-shadow: 0 6px 30px rgba(255, 107, 0, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: #FF6B00;
  color: #FF6B00;
  background: rgba(255, 107, 0, 0.05);
}
.btn-wa {
  background: #25D366;
  color: white;
  font-weight: 700;
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  background: #20BD5A;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* ═══════ WHATSAPP FLOAT ═══════ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.wa-float svg { width: 32px; height: 32px; fill: white; }
.wa-float::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ═══════ COUNTERS ═══════ */
.counter { font-variant-numeric: tabular-nums; }

/* ═══════ MOBILE MENU ═══════ */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
  background: #0F0F14;
}
.mobile-menu.open { transform: translateX(0); }

/* ═══════ BADGES ═══════ */
.badge-dark {
  background: rgba(255, 107, 0, 0.1);
  color: #FF9A44;
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
}
.badge-free {
  background: rgba(52, 207, 143, 0.15);
  color: #34CF8F;
  border: 1px solid rgba(52, 207, 143, 0.3);
}
.badge-premium {
  background: rgba(255, 107, 0, 0.15);
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, 0.3);
}

/* ═══════ ACCORDION ═══════ */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content.open { max-height: 500px; }

/* ═══════ LIGHTBOX ═══════ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }

/* ═══════ PHOTO FRAME ═══════ */
.photo-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 11, 13, 0.8) 100%);
  pointer-events: none;
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-frame:hover img { transform: scale(1.05); }

/* ═══════ PLACEHOLDERS ═══════ */
.img-placeholder {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 154, 68, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px;
}
.img-placeholder svg {
  width: 48px; height: 48px;
  color: rgba(255, 107, 0, 0.3);
}

/* ═══════ STAT ITEMS ═══════ */
.stat-item { position: relative; }
.stat-item::after {
  content: '';
  position: absolute; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 30px; height: 2px;
  background: #FF6B00;
  border-radius: 1px;
}

/* ═══════ PARTNER LOGOS ═══════ */
.partner-logo {
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: all 0.3s ease;
}
.partner-logo:hover { opacity: 1; filter: none; }

/* ═══════ ANIMATIONS ═══════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.fade-in-up    { animation: fadeInUp 0.6s ease forwards; }
.fade-in-left  { animation: fadeInLeft 0.6s ease forwards; }
.fade-in-right { animation: fadeInRight 0.6s ease forwards; }

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }

/* ═══════ SCROLLBAR ═══════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0B0B0D; }
::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 0, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 107, 0, 0.5); }

/* ═══════ SELECTION ═══════ */
::selection { background: rgba(255, 107, 0, 0.3); color: white; }

/* ═══════ GLOW ORANGE ═══════ */
.glow-orange { box-shadow: 0 0 40px rgba(255, 107, 0, 0.15); }
