/* Modern CSS Variables */
:root {
  --primary-color: #f28c28;
  --primary-dark: #d37a24;
  --primary-light: #f6a656;
  --secondary-color: #96551b;
  --accent-color: #6622ed;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;

  --text-primary: #f3f4f6;
  --text-secondary: #ffffff;
  --text-light: #9ca3af;
  
  --bg-primary: #000000;
  --bg-secondary: #080808;
  --bg-accent: #090909;
  
  --border-color: #000000;
  --border-light: #f3f4f6;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  /* Galaxy themed background */
  background-color: #0b0c10;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
  background-repeat: repeat;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { 
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000000 !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 1000;
  transition: none !important;
}

/* Force navbar to stay black - override any inline styles */
.navbar,
.navbar.scrolled,
.navbar[style] {
  background: #000000 !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Additional specificity to override any dynamic styles */
nav.navbar,
header.navbar,
.navbar.navbar {
  background: #000000 !important;
  backdrop-filter: none !important;
}

/* Override any possible framework styles */
.navbar.fixed-top,
.navbar.navbar-light,
.navbar.navbar-dark,
.navbar.bg-light,
.navbar.bg-white {
  background: #000000 !important;
  background-color: #000000 !important;
}

/* Override Bootstrap or other framework navbar styles */
.navbar-light {
  background-color: #000000 !important;
}

/* Override any JavaScript-applied styles */
.navbar[style*="background"] {
  background: #000000 !important;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

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

.nav-cta {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.nav-cta:hover {
  background: #ffffff;
  color: #000000 !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none;
}

/* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 44px;
  height: 38px;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
  transition: background .25s ease;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition);
  position: relative;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    inset: 0 0 0 0;
    padding: 90px 0 4rem;
    left: 0;
    transform: translateX(-100%);
    top: 0;
    flex-direction: column;
    background: rgba(0,0,0,0.95) !important;
    backdrop-filter: blur(8px);
    width: 100%;
    text-align: center;
    transition: transform .45s cubic-bezier(.77,0,.18,1);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 30px 60px -15px rgba(0,0,0,0.7);
    overflow-y: auto;
    z-index: 100;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }

  body.menu-open {
    overflow: hidden;
  }
  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 95;
  }
  .mobile-nav-overlay.active { opacity:1; pointer-events:auto; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.active .bar:nth-child(2) { opacity:0; }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hamburger:focus-visible { outline: 2px solid #ff7a00; outline-offset: 3px; }
  .nav-menu .nav-link { 
    font-size: 1.15rem; 
    padding: 0.9rem 1.5rem; 
    color: #ffffff !important;
    opacity: 1;
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Galaxy image background */
  background: url('https://source.unsplash.com/1600x900/?galaxy,stars') center/cover no-repeat;
  color: #f3f4f6;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11,12,16,0.6); /* dark overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  /* text-shadow: 3px 3px 12px rgba(0,0,0,0.9); */
  color: #f3f4f6;
}

.highlight {
  background: linear-gradient(270deg, #f28c28 0%, #f28c28 25%, #f28c28 50%, #f28c28 75%, #f28c28 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 4s ease-in-out infinite;
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Reduce animation on mobile devices */
@media (max-width: 768px) {
  .highlight {
    animation-duration: 6s; /* Slower animation on mobile */
  }
}

/* Page Load Animations */
.page-fade-in {
  animation: pageSlideUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Loading overlay */
.page-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.page-loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(34, 211, 238, 0.3);
  border-top: 3px solid var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pageSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-hero {
  animation: heroFadeIn 1s ease-out 0.2s forwards;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  animation: sectionSlideIn 1s ease-out 0.4s forwards;
  opacity: 0;
  transform: translateY(50px);
}

@keyframes sectionSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-section {
  animation: processSlideIn 1s ease-out 0.6s forwards;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes processSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section {
  animation: faqSlideIn 1s ease-out 0.8s forwards;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes faqSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animation for contact cards */
.contact-card {
  animation: cardSlideIn 0.6s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

.contact-card:nth-child(1) { animation-delay: 0.6s; }
.contact-card:nth-child(2) { animation-delay: 0.7s; }
.contact-card:nth-child(3) { animation-delay: 0.8s; }
.contact-card:nth-child(4) { animation-delay: 0.9s; }

@keyframes cardSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Form animation */
.contact-form {
  animation: formSlideIn 0.8s ease-out 0.5s forwards;
  opacity: 0;
  transform: translateX(30px);
}

@keyframes formSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Process steps animation */
.process-step {
  animation: stepSlideIn 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.process-step:nth-child(1) { animation-delay: 0.8s; }
.process-step:nth-child(2) { animation-delay: 0.9s; }
.process-step:nth-child(3) { animation-delay: 1s; }
.process-step:nth-child(4) { animation-delay: 1.1s; }

@keyframes stepSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ items animation */
.faq-item {
  animation: faqItemSlideIn 0.5s ease-out forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.faq-item:nth-child(1) { animation-delay: 1s; }
.faq-item:nth-child(2) { animation-delay: 1.1s; }
.faq-item:nth-child(3) { animation-delay: 1.2s; }
.faq-item:nth-child(4) { animation-delay: 1.3s; }

@keyframes faqItemSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Page Exit Animations */
.page-exit {
  animation: pageSlideOut 0.5s ease-in forwards;
}

@keyframes pageSlideOut {
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}

.hero-exit {
  animation: heroSlideOut 0.4s ease-in forwards;
}

@keyframes heroSlideOut {
  to {
    opacity: 0;
    transform: translateY(-40px);
  }
}

.section-exit {
  animation: sectionSlideOut 0.3s ease-in forwards;
}

@keyframes sectionSlideOut {
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}

.navbar-exit {
  animation: navbarSlideOut 0.3s ease-in forwards;
}

@keyframes navbarSlideOut {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Staggered exit animations */
.stats-section.section-exit {
  animation-delay: 0.1s;
}

.section:nth-of-type(2).section-exit {
  animation-delay: 0.15s;
}

.section:nth-of-type(3).section-exit {
  animation-delay: 0.2s;
}

.section:nth-of-type(4).section-exit {
  animation-delay: 0.25s;
}

.cta-section.section-exit {
  animation-delay: 0.3s;
}

.footer.section-exit {
  animation-delay: 0.35s;
}

/* Legal Pages Styles */
.legal-page {
  padding-top: 120px;
  min-height: 100vh;
  background: var(--bg-primary);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.legal-date {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-style: italic;
}

.legal-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-primary);
}

.legal-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.legal-section ul {
  color: var(--text-secondary);
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-section li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.legal-section a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: var(--accent-secondary);
  text-decoration: underline;
}

.legal-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-footer {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
  .legal-page {
    padding-top: 100px;
  }
  
  .legal-content {
    padding: 1rem;
  }
  
  .legal-header h1 {
    font-size: 2.2rem;
  }
  
  .legal-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section ul {
    padding-left: 1.5rem;
  }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
}

.floating-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1rem;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: -2s;
}

.floating-card:nth-child(3) {
  animation-delay: -4s;
}

.floating-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

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

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background: rgba(0,0,0,0.5);
  padding: 2rem 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(242,140,40,0.7);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-plus {
  color: var(--primary-color);
  font-size: 3rem;
  font-weight: 700;
}

.stat-label {
  color: #e0e6f6;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 5rem 0;
  background: rgba(11,12,16,0.7);
}

.section-alt {
  background: rgba(11,12,16,0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.content-card {
  background: rgba(0,0,0,0.5);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(242,140,40,0.7);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

.content-card h3 {
  margin-bottom: 1rem;
  color: #ffffff;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: #e0e6f6;
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.quote-card {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(242,140,40,0.3);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 20px rgba(242,140,40,0.2);
  margin-top: 2rem;
  position: relative;
  backdrop-filter: blur(10px);
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(242,140,40,0.5);
}

blockquote p {
  font-style: italic;
  font-size: 1.125rem;
  color: #e0e6f6;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

cite {
  color: var(--primary-color);
  font-weight: 600;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.expertise-item {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(242,140,40,0.3);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 15px rgba(242,140,40,0.2);
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.expertise-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(242,140,40,0.4);
  border-color: rgba(242,140,40,0.5);
}

.expertise-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 10px rgba(242,140,40,0.5));
}

.expertise-item span {
  font-weight: 600;
  color: #e0e6f6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(0,0,0,0.5);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(242,140,40,0.7);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.75rem;
  color: white;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-card p {
  margin-bottom: 1.5rem;
  color: #e0e6f6;
}

.service-features {
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Contact Pages */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 8rem 0 5rem;
  text-align: center;
}

.contact-hero-content h1 {
  color: white;
  margin-bottom: 1rem;
}

.contact-hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-header p {
  color: var(--text-secondary);
}

.contact-form {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
  color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
  background: rgba(30, 41, 59, 0.95);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23cbd5e1' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-icon i {
  color: white;
  font-size: 1.25rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-detail {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--border-light);
}

.step-icon i {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.process-step h3 {
  margin-bottom: 1rem;
  color: #ffffff;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(30, 41, 59, 0.5);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.faq-question i {
  color: var(--accent-primary);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

/* Form Status */
.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-status.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Lead Magnet Section */
.lead-magnet-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.lead-magnet-text h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.lead-subtitle {
  font-size: 1.1rem;
  color: #e0e6f6;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-form .form-group {
  margin-bottom: 0;
}

.lead-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,0.3);
  color: #ffffff;
  font-size: 1rem;
  transition: var(--transition);
}

.lead-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(242,140,40,0.1);
}

.lead-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.lead-magnet-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.guide-preview {
  perspective: 1000px;
}

.guide-cover {
  background: linear-gradient(135deg, #1f2937, #374151);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: rotateY(-15deg);
  transition: var(--transition);
}

.guide-cover:hover {
  transform: rotateY(0deg);
}

.guide-cover i {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.guide-cover h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.guide-cover p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* About CTA */
.about-cta {
  margin-top: 2rem;
}

/* Service Links */
.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* About Page Specific Styles */
.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-text h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.founder-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.founder-text p {
  color: #e0e6f6;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.founder-visual {
  display: flex;
  justify-content: center;
}

.founder-photo {
  text-align: center;
}

.photo-placeholder {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  color: #ffffff;
}

.photo-placeholder i {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.photo-placeholder p {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.photo-placeholder small {
  color: rgba(255,255,255,0.7);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.approach-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(0,0,0,0.3);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

.approach-number {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.approach-content h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.approach-content p {
  color: #e0e6f6;
  line-height: 1.6;
}

/* Services Page Specific Styles */
.services-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-detail-card {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 3rem;
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(242,140,40,0.3);
}

.service-detail-header {
  text-align: center;
  margin-bottom: 2rem;
}

.service-detail-header h2 {
  color: #ffffff;
  margin: 1rem 0;
}

.service-tagline {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.service-column h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-benefits {
  list-style: none;
  padding: 0;
}

.service-benefits li {
  color: #e0e6f6;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.service-why {
  color: #e0e6f6;
  font-size: 1.1rem;
  line-height: 1.6;
  background: rgba(242,140,40,0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .founder-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .approach-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-detail-card {
    padding: 2rem;
  }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .lead-magnet-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .guide-cover {
    transform: none;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Footer */
.footer {
  background: rgba(11,12,16,0.9);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .expertise-grid {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .hero {
    padding-top: 60px;
  }
  
  .section {
    padding: 3rem 0;
  }
}
