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

:root {
  --color-space-dark: #0B132B;
  --color-space-slate: #1C2541;
  --color-gold: #F59E0B;
  --color-gold-hover: #D97706;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-space-dark);
  color: #FFFFFF;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Styles */
.glass-panel {
  background: rgba(28, 37, 65, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-panel-heavy {
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.glass-card-hover {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-hover:hover {
  transform: translateY(-5px);
  background: rgba(28, 37, 65, 0.65);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 40px -10px rgba(245, 158, 11, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-space-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--color-space-slate);
  border: 2px solid var(--color-space-dark);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Animations */
@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spin-slow 25s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.25);
  }
  50% {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.45);
    border-color: rgba(245, 158, 11, 0.6);
  }
}

.animate-glow-pulse {
  animation: pulse-glow 3s infinite;
}

/* Glowing text */
.text-glow {
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

/* Accordion Smooth Slide */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--color-gold);
}

/* Text Selection */
::selection {
  background-color: var(--color-gold);
  color: var(--color-space-dark);
}

/* Masonry grid fix for Google reviews */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 1.5rem;
  grid-auto-flow: dense;
}

/* Micro animations for CTA */
.btn-premium {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.5s ease;
}

.btn-premium:hover::before {
  left: 100%;
}
