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

:root {
  --primary-orange: #ff6b35;
  --secondary-cyan: #00d9ff;
  --deep-space: #0d0221;
  --stellar-purple: #6a0572;
  --cosmic-teal: #004aad;
  --meteor-red: #ff3864;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--deep-space);
  color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Orbitron', sans-serif;
}

/*
* Alerts
*/
.alert-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: 0px;
  border-radius: 0px;
  border: none;
}
.alert-danger {
  background-color: #ff3864;
  color: #fff;
}
.alert-success {
  background-color: #1d9c49;
  color: #fff;
}

/*
* Pagination
*/
.pagination .page-link {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #fff;
  transition: all 0.3s;
  font-size: 24px;
}
.pagination .page-link:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #fff;
}
.pagination .page-item.active .page-link {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #fff;
}

/* Animated Background */
.cosmic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  z-index: -2;
}

.cosmic-bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(2px 2px at 20px 30px, #eee, transparent),
      radial-gradient(2px 2px at 60px 70px, #fff, transparent),
      radial-gradient(1px 1px at 50px 50px, #ddd, transparent),
      radial-gradient(1px 1px at 130px 80px, #fff, transparent),
      radial-gradient(2px 2px at 90px 10px, #eee, transparent);
  background-size: 200px 200px;
  animation: twinkle 5s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Floating particles */
.particles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Navigation */
.navbar {
  background: rgba(13, 2, 33, 0.9) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  padding: 20px 0;
}

.navbar-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.nav-link {
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 15px;
  margin-right: 0px!important;
  padding-right: 0px!important;
  position: relative;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange), var(--secondary-cyan));
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1rem;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent);
  border-radius: 50%;
  animation: pulse 8s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #fff, var(--secondary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.5rem;
  color: #b8b8d1;
  margin-bottom: 40px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero .subtitle {
    font-size: 1.2rem;
  }
}

.btn-meteor {
  background: linear-gradient(135deg, var(--primary-orange), var(--meteor-red));
  border: none;
  padding: 18px 50px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

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

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

.btn-meteor:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6);
}

.btn-whatsapp {
  background: #25d366;
  border: none;
  padding: 10px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.4s;
}

/* Section Styles */
section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-subtitle {
  text-align: center;
  color: #b8b8d1;
  font-size: 1.2rem;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* About Section */
.about-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 217, 255, 0.1));
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent);
  border-radius: 50%;
}

.stat-box {
  text-align: center;
  padding: 30px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s;
}

.stat-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 107, 53, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-orange);
}

.stat-label {
  font-size: 1.1rem;
  color: #b8b8d1;
}

@media (max-width: 768px) {
  .about-card {
    padding: 30px;
  }
}

/* Meteorite Cards */
.meteorite-showcase {
  background: linear-gradient(135deg, rgba(106, 5, 114, 0.3), rgba(13, 2, 33, 0.8));
  border-radius: 25px;
  padding: 40px;
  border: 2px solid rgba(0, 217, 255, 0.2);
  transition: all 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.meteorite-showcase h3 {
  color: var(--secondary-cyan);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.price-tag {
  display: inline-block;
  background: #000;
  color: var(--primary-orange);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 20px;
}

/* Services */
.service-box {
  background: rgba(0, 74, 173, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.service-box:hover {
  background: rgba(0, 74, 173, 0.2);
  transform: translateY(-10px);
  border-color: var(--secondary-cyan);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--secondary-cyan), var(--cosmic-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

/* Testimonials */
.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(106, 5, 114, 0.1));
  border-left: 4px solid var(--primary-orange);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(255, 107, 53, 0.2);
  font-family: serif;
}

.stars i {
  color: var(--primary-orange);
  font-size: 1.2rem;
  margin-right: 5px;
}

.client-name {
  color: var(--secondary-cyan);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, rgba(106, 5, 114, 0.2), rgba(13, 2, 33, 0.9));
}

.contact-info-box {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.contact-info-box:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateX(10px);
}

.contact-info-box i {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-right: 20px;
}

/* Footer */
footer {
  background: rgba(13, 2, 33, 0.95);
  padding: 60px 0 30px;
  border-top: 2px solid rgba(255, 107, 53, 0.3);
}

.footer-title {
  color: var(--primary-orange);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.social-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-orange), var(--meteor-red));
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.footer-link {
  color: #b8b8d1;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: var(--secondary-cyan);
  padding-left: 10px;
}

/*
* Item page
*/
.item-order-form {
  background: rgba(0, 74, 173, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}
.btn-meteor.sm {
  padding: 10px 30px;
  font-size: 1rem;
}