/* NEON SPLASH THEME - Bold, Bright, Modern */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Poppins:wght@400;500;600&display=swap');

/* Base Styles */
:root {
  --primary: #ff2d55;
  --secondary: #5856d6;
  --accent: #ffcc00;
  --dark: #222222;
  --light: #ffffff;
  --gradient: linear-gradient(to right, var(--primary), var(--secondary));
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f0f2f5;
  color: var(--dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero h1 {
  font-size: 3.5rem !important;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero p {
  font-size: 1.4rem !important;
  font-weight: 500;
  color: var(--secondary);
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Hero Section */
.hero {
  padding: 80px 20px !important;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255,45,85,0.1), transparent 70%),
              radial-gradient(circle at bottom left, rgba(88,86,214,0.1), transparent 70%);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

/* CTA Button */
.cta-btn {
  font-size: 1.3rem !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 15px 40px !important;
  border: none;
  border-radius: 50px !important;
  background: var(--gradient);
  box-shadow: 0 10px 20px rgba(255, 45, 85, 0.3);
  transition: all 0.3s ease;
  
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(255, 45, 85, 0.4);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: #e01a42;
  border-color: #e01a42;
}

/* Features Section */
.features {
  background: #fbfbfd !important;
  padding: 60px 0 !important;
  border-radius: 20px;
  margin-top: -20px;
  box-shadow: 0 -20px 30px rgba(0,0,0,0.05);
}

.features ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.features li {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--accent);
}

.features li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Images */
.img-fluid {
  border-radius: 15px !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
  transition: transform 0.3s ease;
  max-width: 85% !important;
}

.img-fluid:hover {
  transform: scale(1.02);
}

/* Trust Elements */
.trust {
  font-size: 1rem !important;
  color: #666 !important;
  margin-top: 40px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem !important;
  }
  
  .hero p {
    font-size: 1.2rem !important;
  }
  
  .cta-btn {
    width: 80% !important;
    font-size: 1.1rem !important;
  }
  
  .features ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem !important;
  }
  
  .hero p {
    font-size: 1rem !important;
  }
  
  .cta-btn {
    width: 90% !important;
  }
}