/* 🌟 Aurora Landing Page - Clean Beautiful Theme */

:root {
  /* Aurora Gradient Colors */
  --aurora-primary: #667eea;
  --aurora-primary-dark: #764ba2;
  --aurora-secondary: #f093fb;
  --aurora-secondary-dark: #f5576c;
  --aurora-success: #4facfe;
  --aurora-success-dark: #00f2fe;
  --aurora-glow: rgba(102, 126, 234, 0.4);
}

/* ========== Hero Section - Clean Design (No Animations) ========== */

.landing-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  overflow: hidden;
}

/* Remove animated background */
.landing-hero::before,
.landing-hero::after {
  display: none;
}

/* Hide all images in hero section */
.hero-animation-img,
.hero-dashboard-img,
.hero-elements-img,
img[alt*="hero"],
img[alt*="dashboard"] {
  display: none !important;
}

/* Hero Text Styling */
.hero-text-box {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}

.hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900 !important;
  font-size: 4rem !important;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-sub-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Premium Buttons */
.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
  color: #667eea !important;
  border: none !important;
  padding: 16px 48px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  box-shadow: 
    0 10px 40px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(102, 126, 234, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 45px rgba(255, 255, 255, 0.4),
    0 0 25px rgba(102, 126, 234, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  color: #5a67d8 !important;
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* ========== Features Section - Modern Cards ========== */

.landing-features {
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
}

[data-bs-theme="dark"] .landing-features {
  background: linear-gradient(180deg, #1a1d2e 0%, #0f1419 100%);
}

/* Hide feature images */
.features-icon-box img,
.landing-features img {
  display: none !important;
}

/* Section Badge */
.badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  padding: 8px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Feature Cards */
.features-icon-box {
  position: relative;
  padding: 30px;
  transition: all 0.3s ease;
}

.features-icon-box:hover {
  transform: translateY(-5px);
}

/* Feature Icons */
.features-icon-box .text-primary svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.3));
  transition: all 0.3s ease;
}

.features-icon-box:hover .text-primary svg {
  transform: scale(1.1);
  filter: drop-shadow(0 10px 25px rgba(102, 126, 234, 0.5));
}

.text-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== Cards - Clean Design ========== */

.card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

[data-bs-theme="dark"] .card {
  background: rgba(31, 41, 55, 0.9);
  border-color: rgba(102, 126, 234, 0.2);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

/* Hide card images */
.card img {
  display: none !important;
}

/* ========== Pricing Cards - Premium Design ========== */

.pricing-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card.popular {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.pricing-card.popular .badge {
  background: white !important;
  color: #667eea !important;
}

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

.pricing-card.popular:hover {
  transform: translateY(-8px) scale(1.05);
}

.price-value {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card.popular .price-value {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hide pricing images */
.pricing-card img {
  display: none !important;
}

/* ========== Scrollbar - Beautiful Custom Design ========== */

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
}

[data-bs-theme="dark"] ::-webkit-scrollbar-track {
  background: #1a1d2e;
}

[data-bs-theme="dark"] ::-webkit-scrollbar-thumb {
  border-color: #1a1d2e;
}

/* ========== Footer - Simple Gradient Design ========== */

footer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  position: relative;
}

/* Remove footer animations */
footer::before {
  display: none;
}

footer a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

footer a:hover {
  color: white !important;
  text-decoration: underline;
}

/* Hide footer images */
footer img {
  display: none !important;
}

/* ========== Navigation - Clean Effect ========== */

.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

[data-bs-theme="dark"] .navbar {
  background: rgba(31, 41, 55, 0.95) !important;
  border-bottom-color: rgba(102, 126, 234, 0.2);
}

/* Hide navbar images */
.navbar img:not(.logo) {
  display: none !important;
}

/* ========== Hide All Illustrations and Backgrounds ========== */

/* Hide all background images */
img[src*="background"],
img[src*="bg-"],
img[alt*="background"],
img[class*="background"] {
  display: none !important;
}

/* Hide all illustration images */
img[src*="illustration"],
img[alt*="illustration"],
img[class*="illustration"] {
  display: none !important;
}

/* Hide decorative images */
img[src*="icon"],
img[src*="element"],
img[alt*="element"],
.hero-elements-img,
.section-title-img {
  display: none !important;
}

/* Keep only logo visible */
.logo,
img[alt*="logo"],
img[class*="logo"] {
  display: inline-block !important;
}

/* ========== Utility Classes ========== */

.text-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== Responsive Design ========== */

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-sub-title {
    font-size: 1.1rem;
  }
  
  .btn-primary {
    padding: 14px 36px !important;
    font-size: 1rem !important;
  }
  
  .features-icon-box {
    margin-bottom: 30px;
  }
  
  .price-value {
    font-size: 3rem;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem !important;
  }
  
  .landing-hero {
    min-height: 80vh;
  }
}

/* ========== Section Spacing ========== */

section {
  padding: 60px 0;
}

.section-py {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ========== Typography ========== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* ========== Smooth Transitions ========== */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, button, .btn, .card {
  transition: all 0.3s ease;
}

/* ========== Smooth Scroll ========== */

html {
  scroll-behavior: smooth;
}

/* ========== Focus States ========== */

button:focus,
.btn:focus,
a:focus {
  outline: 2px solid rgba(102, 126, 234, 0.5);
  outline-offset: 2px;
}

/* ========== Loading State ========== */

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(102, 126, 234, 0.2);
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========== Print Styles ========== */

@media print {
  .navbar,
  footer,
  .btn {
    display: none !important;
  }
}
