/* =============================================
   Elite Obsidian & Azure — style.css
   Theme: Obsidian #050505 | Azure #3B82F6 | Electric #00D2FF
   Fonts: Inter + Outfit
============================================= */

@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 {
  --obsidian:    #050505;
  --midnight:    #0F172A;
  --primary:     #3B82F6;
  --primary-glow:#60A5FA;
  --azure:       #00D2FF;
  --gold:        #FBBF24;
  --gold-dark:   #D97706;
  --white:       #FFFFFF;
  --pearl:       #F8FAFC;
  --slate-100:   #F1F5F9;
  --slate-400:   #94A3B8;
  --slate-700:   #334155;
  --text-main:   #0F172A;
  --text-muted:  #64748B;
  
  --radius-xl:   32px;
  --radius-lg:   20px;
  --radius-md:   12px;
  --radius-btn:  100px;
  
  --shadow-sm:   0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-md:   0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-lg:   0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-premium: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
  
  --glass:       rgba(255, 255, 255, 0.03);
  --glass-border:rgba(255, 255, 255, 0.1);
  --glass-blur:  blur(12px);
  
  --transition:  all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'Inter',sans-serif;color:var(--text-main);background:var(--pearl);line-height:1.6;overflow-x:hidden;}
h1,h2,h3,h4,h5,h6{font-family:'Outfit',sans-serif;font-weight:700;line-height:1.2;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;}

/* ===== UTILITIES ===== */
.section-pad{padding:120px 0;}
.section-pad-sm{padding:80px 0;}
.bg-obsidian{background:var(--obsidian);}
.bg-midnight{background:var(--midnight);}
.bg-pearl{background:var(--pearl);}
.text-azure{color:var(--azure);}
.text-gold{color:var(--gold);}
.text-gradient{background:linear-gradient(135deg, var(--white) 0%, var(--azure) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.title-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--azure));
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ===== BUTTONS ===== */
.btn-premium {
  background: linear-gradient(135deg, var(--primary) 0%, var(--azure) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  padding: 16px 40px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--azure) 0%, var(--primary) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
  color: var(--white);
}

.btn-premium:hover::before {
  opacity: 1;
}

.btn-outline-premium {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--primary);
  border-radius: var(--radius-btn);
  padding: 14px 38px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-outline-premium:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

.btn-white {
  background: var(--white);
  color: var(--midnight);
  border-radius: var(--radius-btn);
  padding: 16px 40px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.btn-white:hover {
  background: var(--pearl);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ===== NAVBAR ===== */
.navbar-main {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--midnight);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--azure));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted) !important;
  padding: 8px 18px !important;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}

.btn-quote-nav {
  background: var(--midnight);
  color: var(--white) !important;
  border-radius: var(--radius-btn);
  padding: 10px 24px !important;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

.btn-quote-nav:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero-section {
  min-height: 90vh;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0, 210, 255, 0.1) 0%, transparent 40%);
  opacity: 0.6;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: clamp(40px, 6vw, 84px);
  color: var(--white);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 25px;
}

.hero-content p {
  color: var(--slate-400);
  font-size: 20px;
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 5px;
}

.hero-stat-item p {
  color: var(--slate-400);
  font-size: 14px;
  margin: 0;
}

.hero-visual {
  position: relative;
  z-index: 5;
}

.hero-img-container {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.hero-img-container:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-glass-overlay {
  position: absolute;
  top: 20px; right: -40px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 25px;
  width: 280px;
  animation: float 6s ease-in-out infinite;
}

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

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--slate-700);
}

.trust-item i {
  color: var(--primary);
  font-size: 18px;
}

/* ===== SERVICES ===== */
.service-card-new {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 45px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.service-card-new:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary);
}

.service-icon-new {
  width: 70px;
  height: 70px;
  background: var(--slate-100);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
  transition: var(--transition);
}

.service-card-new:hover .service-icon-new {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.service-card-new h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card-new p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ===== BUNDLE SECTION ===== */
.bundle-section {
  background: var(--midnight);
  border-radius: 60px;
  padding: 100px 60px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.bundle-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}

.bundle-card-premium {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 40px;
  height: 100%;
  transition: var(--transition);
}

.bundle-card-premium:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--azure);
  transform: scale(1.02);
}

.bundle-tag {
  background: var(--azure);
  color: var(--obsidian);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

.bundle-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin: 20px 0;
}

.bundle-price span {
  font-size: 18px;
  color: var(--slate-400);
}

/* ===== TESTIMONIALS ===== */
.testimonial-premium {
  background: var(--white);
  border-radius: 32px;
  padding: 50px;
  box-shadow: var(--shadow- प्रीमियम);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 40px; right: 50px;
  font-size: 60px;
  color: rgba(59, 130, 246, 0.1);
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.user-img {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

/* ===== FOOTER ===== */
.footer-elite {
  background: var(--obsidian);
  padding: 100px 0 40px;
  color: var(--slate-400);
}

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 25px;
  display: block;
}

.footer-link {
  color: var(--slate-400);
  transition: var(--transition);
  display: block;
  margin-bottom: 12px;
}

.footer-link:hover {
  color: var(--azure);
  transform: translateX(5px);
}

.footer-bottom-elite {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 80px;
  padding-top: 40px;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section { text-align: center; padding: 80px 0; }
  .hero-content h1 { font-size: 50px; }
  .hero-stats { justify-content: center; }
  .hero-img-container { margin-top: 60px; transform: none !important; }
  .hero-glass-overlay { display: none; }
  .bundle-section { padding: 60px 20px; border-radius: 40px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 80px 0; }
  .hero-content h1 { font-size: 40px; }
  .service-card-new { padding: 30px; }
}
}
