/* ===== PREMIUM THEME OVERRIDE ===== */
:root {
  --primary: #0F172A; /* Deeper modern navy */
  --primary-light: #1E293B;
  --accent: #EAB308; /* Modern gold/yellow */
  --accent-hover: #CA8A04;
  --text: #334155;
  --text-light: #64748B;
  --bg: #F8FAFC;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background: var(--bg);
}

/* Glassmorphism Header */
.header {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.main-nav {
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.nav-list > li > a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

/* Hero Enhancements */
.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
  line-height: 1.2;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0) 70%);
  z-index: 1;
}

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

.hero-list li {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Cards & Interactions */
.feature-card, .service-card, .blog-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.02);
  background: var(--white);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(234, 179, 8, 0.3);
}

.feature-icon {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(234, 179, 8, 0.05));
  color: var(--accent);
  transition: var(--transition);
  box-shadow: inset 0 0 0 1px rgba(234, 179, 8, 0.1);
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
  background: var(--accent);
  color: var(--white);
}

/* Modern Buttons */
.btn {
  border-radius: 50px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
  color: #fff !important;
  border: none;
}

.btn-primary:hover {
  box-shadow: 0 10px 20px rgba(234, 179, 8, 0.3);
  transform: translateY(-3px) !important;
}

/* Section Headings */
.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

/* Image overlays & hover */
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
  opacity: 0.6;
  transition: var(--transition);
}

.service-card:hover .service-image::after {
  opacity: 0.8;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid items */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }

.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }

.blog-grid .blog-card:nth-child(1) { transition-delay: 0.1s; }
.blog-grid .blog-card:nth-child(2) { transition-delay: 0.2s; }
.blog-grid .blog-card:nth-child(3) { transition-delay: 0.3s; }
