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

:root {
  --primary: #050B1F;
  --secondary: #2563EB;
  --accent: #06B6D4;
  --success: #22C55E;
  --slate-900: #050B1F;
  --slate-800: #07132D;
  --slate-700: #0A1735;
  --slate-300: #D6E3F0;
  --slate-100: #F1F5F9;
  --white: #FFFFFF;
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-cyan: rgba(6, 182, 212, 0.25);
  --glow-blue: rgba(37, 99, 235, 0.2);
}

/* Global Reset & Typography */
body {
  font-family: var(--font-body);
  background-color: var(--primary);
  color: var(--slate-300);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--white);
  font-weight: 750;
  letter-spacing: -0.2px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--white);
}

/* 3D Glassmorphism Cards with Neon Accents */
.glass-card {
  position: relative;
  background: rgba(7, 19, 45, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px 30px;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
}

/* Top Gradient Accent Line */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

/* Mouse Tracking Glow Highlight */
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(6, 182, 212, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6), 0 0 30px rgba(6, 182, 212, 0.15);
}

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

.glass-card:hover::after {
  opacity: 1;
}

/* Premium Buttons */
.btn-premium-blue {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--white) !important;
  border: none;
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-premium-blue:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.45);
  color: var(--white) !important;
}

.btn-premium-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--white) !important;
  border: none;
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-premium-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.45);
  color: var(--white) !important;
}

.btn-premium-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.btn-premium-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

/* Premium Spacing Systems */
.section-padding {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
}

.section-title-wrapper {
  margin-bottom: 60px;
}
.section-subtitle {
  color: var(--accent);
  font-family: var(--font-headings);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

/* Sticky CTAs & WhatsApp */
.floating-cta-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.floating-cta-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-cta-btn:hover {
  transform: scale(1.1);
}
.cta-whatsapp {
  background-color: #22C55E;
}
.cta-call {
  background-color: var(--secondary);
}

/* Mobile Sticky Bar */
.mobile-sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 11, 31, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
  justify-content: space-around;
  padding: 10px 0;
}
@media (max-width: 991px) {
  .mobile-sticky-cta-bar {
    display: flex;
  }
  .floating-cta-container {
    bottom: 80px;
    right: 20px;
  }
}
.mobile-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--slate-300);
  font-size: 11px;
}
.mobile-cta-item i {
  font-size: 18px;
  margin-bottom: 3px;
}

/* Custom interactive plan grid */
.plan-feature-badge {
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  display: inline-block;
  margin: 5px;
}

/* Micro-animations */
@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(6, 182, 212, 0.2); }
  50% { box-shadow: 0 0 25px rgba(6, 182, 212, 0.5); }
  100% { box-shadow: 0 0 10px rgba(6, 182, 212, 0.2); }
}
.glow-pulse-border {
  animation: glowPulse 3s infinite alternate;
}

/* Lazy loading placeholders */
.img-lazy-glow {
  background: linear-gradient(90deg, #07132d 25%, #0a1735 50%, #07132d 75%);
  background-size: 200% 100%;
  animation: loadingShimmer 1.5s infinite;
}
@keyframes loadingShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Custom Loader Theme Overrides */
#loading {
  background-color: var(--primary) !important;
}

.loader2, .loader2 div {
  border-top-color: var(--accent) !important; /* Glowing Cyan */
  border-left-color: rgba(255, 255, 255, 0.05) !important;
  border-right-color: rgba(255, 255, 255, 0.05) !important;
}

/* Alternate loader layers with brand secondary color (Blue) for a premium look */
.loader2 > div > div,
.loader2 > div > div > div > div,
.loader2 > div > div > div > div > div > div {
  border-top-color: var(--secondary) !important; /* Glowing Blue */
}

/* Responsive Floating Header Overrides for Mobile Viewport */
@media (max-width: 991px) {
  .premium-floating-header {
    width: 92% !important;
    height: 70px !important;
    top: 15px !important;
    padding: 0 20px !important;
    border-radius: 20px !important;
  }
  .premium-floating-header.header-shrunk {
    height: 64px !important;
    width: 94% !important;
    top: 10px !important;
    border-radius: 18px !important;
  }
}
