/* ===================================
   LAUNCHD WEBSITE STYLES
   ================================== */

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

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* ===================================
   NAVIGATION STYLES (nav-dark.html)
   ================================== */
.hero-header {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  position: relative;
  z-index: 100;
}

.logo img { 
  height: 80px; 
}

.hero-nav { 
  display: flex; 
  gap: 2rem; 
  align-items: center; 
}

.hero-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.hero-nav a:hover { 
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 15001;
  padding: 4px;
}

.hamburger .bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.open .bar:nth-child(1) { 
  transform: translateY(8px) rotate(45deg); 
}

.hamburger.open .bar:nth-child(2) { 
  opacity: 0; 
}

.hamburger.open .bar:nth-child(3) { 
  transform: translateY(-8px) rotate(-45deg); 
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 15000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

/* Ensure mobile nav links are visible when nav is open */
.mobile-nav.open .mobile-nav-links {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.mobile-nav.open .mobile-nav-links a {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2rem;
  padding: 2rem;
}

.mobile-nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 12px;  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mobile-nav-links a:hover {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.mobile-nav-links a:active {
  transform: translateY(0) scale(0.98);
}

/* Mobile Navigation Close Button */
.mobile-nav-close {
  display: flex;
  justify-content: flex-end;
  padding: 2rem 2rem 1rem;
  position: relative;
  z-index: 15002;
}

.mobile-close-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.close-bar {
  position: absolute;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.close-bar:nth-child(1) { 
  transform: rotate(45deg); 
}
.close-bar:nth-child(2) { 
  transform: rotate(-45deg); 
}

.mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Light theme mobile close button */
.hero-header.light .close-bar {
  background: #333;
}

.hero-header.light .mobile-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* ===================================
   MOBILE NAVIGATION RESPONSIVE STYLES
   ================================== */
@media (max-width: 768px) {
  .hero-nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
}

/* ===================================
   HERO SECTION STYLES (hero.html)
   ================================== */
.hero-realistic {
  width: 100%;
  height: auto;
  min-height: 140vh;
  background-color: #000;
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2.5rem;
  padding-bottom: 0rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  margin-bottom: -50vh;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  padding: 0.5rem 0;
}

.solar-system {
  position: relative;
  width: 500px;
  height: 500px;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.planet-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, #7FDBFF, #0074D9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 60px 20px rgba(127, 219, 255, 0.5);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50% / 35%;
  transform: translate(-50%, -50%);
}

.orbit1 {
  width: 250px;
  height: 150px;
  animation: rotate1 20s linear infinite;
}

.orbit2 {
  width: 350px;
  height: 200px;
  animation: rotate2 30s linear infinite reverse;
}

.orbit3 {
  width: 450px;
  height: 250px;
  animation: rotate3 40s linear infinite;
}

.small-planet {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.2);
}

.planet1 {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, #FF6B6B, #C0392B);
}

.planet2 {
  width: 15px;
  height: 15px;
  background: radial-gradient(circle at 30% 30%, #F1C40F, #F39C12);
}

.planet3 {
  width: 25px;
  height: 25px;
  background: radial-gradient(circle at 30% 30%, #9B59B6, #8E44AD);
}

.hero-text {
  max-width: 500px;
  text-align: left;
  margin-top: 0;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

#typed-text {
  font-weight: bold;
  color: #FFD700;
}

/* Individual typed letters */
.typed-letter {
  color: #FFD700;
}

#cursor {
  display: inline-block;
  background-color: #FFD700;
  width: 2px;
  margin-left: 5px;
  animation: blink 0.7s infinite;
  height: 1.2em;
  vertical-align: bottom;
}

/* ===================================
   SERVICES SECTION STYLES (services.html)
   ================================== */
.diamond-section {
  background: #0074D9;
  color: white;
  clip-path: polygon(
    50% 10%,
    100% 22%,
    100% 78%,
    50% 90%,
    0% 78%,
    0% 22%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160vh;
  gap: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: -48vh !important;
  margin-bottom: 0;
  padding-top: 5rem;
  padding-bottom: 16rem;
  box-shadow: 0 -12px 32px -8px rgba(0,0,0,0.25);
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.diamond-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.diamond-content-full {
  width: 100%;
  max-width: 1400px;
  text-align: center;
  padding: 0 2rem;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.services-header .highlight {
  color: #ffcc00;
}

.services-header .diamond-subtext {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.6;
  margin: 0 auto;
}

.diamond-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.diamond-section h2 .highlight {
  color: #ffcc00;
}

.diamond-subtext {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.6;
  margin: 0 auto;
}

.services-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.services-row-full {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 1rem;
}

.service-item i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #ffcc00;
}

.service-item span {
  font-weight: 500;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

/* ===================================
   ANIMATIONS
   ================================== */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes rotate1 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate2 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate3 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===================================
   PROCESS SECTION STYLES (process.html)
   ================================== */
.process-section {
  background: #ffffff;
  padding: 8rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-logo {
  margin-bottom: 1rem;
}

.process-logo img {
  height: 160px;
}

.process-quote h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #101010;
  margin: 0;
}

.highlight {
  color: #FFD700;
}

.process-subtext {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 1.5rem auto 3rem;
  line-height: 1.7;
}

.process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 4rem;
  max-width: 1000px;
}

.process-card {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 4rem 1rem 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.shape-wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
}

.shape {
  width: 80px;
  height: 80px;
  position: absolute;
  border: 3px solid #ccc;
  transition: all 0.3s ease;
}

.shape.main {
  z-index: 2;
}

.shape.lighter {
  z-index: 1;
  top: 12px;
  left: 12px;
  opacity: 0.5;
}

.shape-circle {
  border-radius: 50%;
}

.shape-diamond {
  transform: rotate(45deg);
}

.shape-square {
  border-radius: 8px;
}

.shape-circle.main {
  background: #3B82F6;
}

.shape-circle.lighter {
  background: #93C5FD;
}

.shape-diamond.main {
  background: #F87171;
}

.shape-diamond.lighter {
  background: #FCA5A5;
}

.shape-square.main {
  background: #FBBF24;
}

.shape-square.lighter {
  background: #FDE68A;
}

.process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-weight: 700;
  color: #101010;
}

.process-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.process-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.process-card:hover .shape.main {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ===================================
   ABOUT SECTION STYLES (about.html)
   ================================== */
.about-section {
  padding: 8rem 5%;
  background: #0074D9;
  clip-path: polygon(
    50% 5%,
    100% 15%,
    100% 85%,
    50% 95%,
    0% 85%,
    0% 15%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  text-align: left;
  position: relative;
  z-index: 2;
  margin-bottom: 0rem;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.about-subtext {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
}

.about-body {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.about-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* ===================================
   BLOG SECTION STYLES (blog.html)
   ================================== */
.blog-section {
  background: #ffffff;
  text-align: center;
  position: relative;
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blog-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #101010;
}

.blog-section .highlight {
  color: #3B82F6;
}

.blog-subtext {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

.blog-index-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

.blog-index-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 340px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-index-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-index-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-index-card h3 {
  font-size: 1.5rem;
  margin: 1.5rem;
  color: #101010;
  line-height: 1.3;
}

.excerpt {
  font-size: 1rem;
  margin: 0 1.5rem 1.5rem;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}

.read-more {
  margin: 0 1.5rem 2rem;
  font-weight: bold;
  color: #3B82F6;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.read-more:hover {
  color: #2563EB;
}

/* Blog Index Page Styles */
.blog-index-section {
  background: #ffffff;
  text-align: center;
  position: relative;
  padding: 6rem 2rem 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blog-index-container {
  max-width: 1200px;
  width: 100%;
}

.blog-index-section h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #101010;
}

.blog-index-section .highlight-dark {
  color: #3B82F6;
}

.blog-index-subtext {
  font-size: 1.3rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.blog-intro-content {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #3B82F6;
}

.blog-intro-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

.blog-posts-heading {
  font-size: 2.5rem;
  margin: 4rem 0 3rem;
  font-weight: 600;
  color: #101010;
  position: relative;
}

.blog-posts-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #3B82F6;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ===================================
   ADDITIONAL NAVIGATION STYLES
   ================================== */

/* Mobile Header Styles (nav-dark-mobile.html) */
.mobile-header {
  background: #000 !important;
  color: #fff !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000 !important;
  display: block;
  border: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

.mobile-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: transparent;
}

.mobile-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-hamburger .bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 3px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-hamburger.open .bar:nth-child(1) { 
  transform: translateY(9px) rotate(45deg); 
}
.mobile-hamburger.open .bar:nth-child(2) { 
  opacity: 0; 
}
.mobile-hamburger.open .bar:nth-child(3) { 
  transform: translateY(-9px) rotate(-45deg); 
}

/* Light Mobile Header (nav-light-mobile.html) */
.mobile-header.light {
  background: #fff;
  color: #333;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.mobile-header.light .mobile-hamburger:hover {
  background: rgba(0, 0, 0, 0.1);
}

.mobile-header.light .mobile-hamburger .bar {
  background: #333;
}

.mobile-header.light .mobile-nav-overlay {
  background: rgba(255, 255, 255, 0.98);
}

.mobile-header.light .mobile-nav-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-header.light .mobile-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.mobile-header.light .mobile-close .bar {
  background: #333;
}

.mobile-header.light .mobile-nav-links a {
  color: #333;
}

.mobile-header.light .mobile-nav-links a:hover {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
}

/* ===================================
   RESPONSIVE STYLES
   ================================== */

/* Services Section Responsive */
@media (max-width: 1024px) {
  .services-row-full {
    justify-content: center;
    gap: 2.5rem;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .diamond-section {
    min-height: 120vh;
    margin-top: -15vh !important;
    padding-top: 12rem;
    padding-bottom: 8rem;
    clip-path: polygon(
      50% 8%,
      100% 18%,
      100% 82%,
      50% 92%,
      0% 82%,
      0% 18%
    );
  }
  
  .diamond-content-full {
    padding: 0 1rem;
  }
  
  .services-header {
    margin-bottom: 3rem;
  }
  
  .services-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .services-header .diamond-subtext {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
  }
  
  .services-row-full {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .service-item {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .diamond-section {
    min-height: 100vh;
    margin-top: -10vh !important;
    padding-top: 10rem;
    padding-bottom: 6rem;
    clip-path: polygon(
      50% 6%,
      100% 15%,
      100% 85%,
      50% 94%,
      0% 85%,
      0% 15%
    );
  }
  
  .services-header h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }
  
  .services-header .diamond-subtext {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
  }
  
  .services-row-full {
    gap: 2rem;
    margin-top: 1.5rem;
  }
  
  .service-item i {
    font-size: 2rem;
  }
  
  .service-item span {
    font-size: 1rem;
  }
}

/* Process Section Responsive */
@media (max-width: 768px) {
  .process-section {
    padding: 6rem 2rem;
  }

  .process-quote h2 {
    font-size: 2.5rem;
  }

  .process-subtext {
    font-size: 1.1rem;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .process-card {
    max-width: 100%;
  }
}

/* About Section Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 6rem 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.5rem;
  }

  .about-subtext {
    font-size: 1.2rem;
  }
}

/* Blog Section Responsive */
@media (max-width: 768px) {
  .blog-section {
    padding: 6rem 2rem;
  }

  .blog-section h2 {
    font-size: 2.5rem;
  }

  .blog-subtext {
    font-size: 1.1rem;
  }

  .blog-index-list {
    flex-direction: column;
    align-items: center;
  }

  .blog-index-card {
    width: 100%;
    max-width: 500px;
  }

  /* Blog Index Page Responsive */
  .blog-index-section {
    padding: 4rem 1rem 6rem;
  }

  .blog-index-section h1 {
    font-size: 2.8rem;
  }

  .blog-index-subtext {
    font-size: 1.2rem;
  }

  .blog-intro-content {
    padding: 1.5rem;
    margin: 0 auto 3rem;
  }

  .blog-intro-text {
    font-size: 1rem;
  }

  .blog-posts-heading {
    font-size: 2rem;
    margin: 3rem 0 2rem;
  }
}

@media (max-width: 480px) {
  .blog-index-section h1 {
    font-size: 2.4rem;
  }

  .blog-index-subtext {
    font-size: 1.1rem;
  }

  .blog-intro-content {
    padding: 1rem;  }
  .blog-posts-heading {
    font-size: 1.8rem;
  }
}

/* Mobile loading state overrides */
@media (max-width: 900px) {
  body.loading #nav-component .hamburger,
  body.loading #nav-component #mainHamburger {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    display: flex !important;
    z-index: 20000 !important;
    position: absolute !important;
    top: 1.2rem !important;
    right: 1.5rem !important;
  }
  
  body.loading #nav-component {
    pointer-events: none;
  }
  
  body.loading #nav-component .hamburger,
  body.loading #nav-component #mainHamburger {
    pointer-events: auto !important;
  }
}

/* Ensure seamless blend with hero */
body.home-header .mobile-header {
  background: #000 !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* ===================================
   FOOTER SECTION STYLES (footer.html)
   ================================== */
.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: #FFD700;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: #3B82F6;
}

/* Company Info Section */
.footer-about .footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.footer-about .footer-logo img:hover {
  transform: scale(1.05);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: #3B82F6;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.footer-social a[href*="linkedin"]:hover {
  background: #0077b5;
}

.footer-social a[href*="instagram"]:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social a[href*="facebook"]:hover {
  background: #1877f2;
}

.footer-social a[href*="youtube"]:hover {
  background: #ff0000;
}

/* Footer Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links ul li a:hover {
  color: #FFD700;
  padding-left: 0.5rem;
}

.footer-links ul li a::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #3B82F6;
  transition: width 0.3s ease;
}

.footer-links ul li a:hover::before {
  width: 0.25rem;
}

/* Contact Section */
.footer-contact .contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.contact-item i {
  color: #3B82F6;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #FFD700;
}

.footer-cta {
  display: inline-block;
  background: linear-gradient(135deg, #3B82F6, #1d4ed8);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta:hover {
  background: linear-gradient(135deg, #1d4ed8, #3B82F6);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #FFD700;
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-about {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 3rem 1rem 1.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-section h4 {
    font-size: 1.1rem;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-about .footer-logo img {
    height: 50px;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-social a {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 2rem 1rem 1rem;
  }
  
  .footer-top {
    gap: 1.5rem;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .footer-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    gap: 0.8rem;
  }

  .footer-nav a {
    width: 180px;
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }
}

/* ===================================
   LOADING ANIMATION STYLES
   ================================== */

/* Loading Screen Container */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* Solar System Container */
.loading-solar-system {
  position: relative;
  width: 60vmin;
  height: 60vmin;
  max-width: 600px;
  max-height: 600px;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Central Planet */
.loading-planet-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12vmin;
  height: 12vmin;
  max-width: 120px;
  max-height: 120px;
  background: radial-gradient(circle at 30% 30%, #7FDBFF, #0074D9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6vmin 2vmin rgba(127, 219, 255, 0.5);
}

/* Orbit Paths */
.loading-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50% / 35%;
  transform: translate(-50%, -50%);
}

.loading-orbit1 {
  width: 30vmin;
  height: 18vmin;
  animation: loading-rotate1 0.4s linear infinite;
}

.loading-orbit2 {
  width: 42vmin;
  height: 25vmin;
  animation: loading-rotate2 0.6s linear infinite reverse;
}

.loading-orbit3 {
  width: 54vmin;
  height: 32vmin;
  animation: loading-rotate3 0.8s linear infinite;
}

/* Planets */
.loading-small-planet {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 1.5vmin 0.3vmin rgba(255, 255, 255, 0.3);
}

.loading-planet1 {
  width: 2.5vmin;
  height: 2.5vmin;
  background: radial-gradient(circle at 30% 30%, #FF6B6B, #C0392B);
}

.loading-planet2 {
  width: 2vmin;
  height: 2vmin;
  background: radial-gradient(circle at 30% 30%, #F1C40F, #F39C12);
}

.loading-planet3 {
  width: 3vmin;
  height: 3vmin;
  background: radial-gradient(circle at 30% 30%, #9B59B6, #8E44AD);
}

/* Logo */
.loading-logo {
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}

.loading-logo img {
  height: 150px;
  filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

/* Animation Keyframes - Fast Initial Rotations */
@keyframes loading-rotate1 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes loading-rotate2 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes loading-rotate3 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Slower Animations for Transition Phase */
.loading-orbit1.slowing {
  animation: loading-rotate1-slow 2s linear infinite;
}

.loading-orbit2.slowing {
  animation: loading-rotate2-slow 2.5s linear infinite reverse;
}

.loading-orbit3.slowing {
  animation: loading-rotate3-slow 3s linear infinite;
}

@keyframes loading-rotate1-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes loading-rotate2-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes loading-rotate3-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Loading States */
#loading-screen.logo-phase .loading-solar-system {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#loading-screen.logo-phase .loading-logo {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease-in 0.2s, transform 0.5s ease-in 0.2s;
}

/* Scroll Transition */
#loading-screen.scroll-transition {
  transform: translateY(-100vh);
  transition: transform 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

#loading-screen.scroll-transition .loading-solar-system,
#loading-screen.scroll-transition .loading-logo {
  opacity: 0;
  transform: scale(0.8) translateY(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Final Fade */
#loading-screen.final-fade {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
  visibility: hidden;
}

/* Content Hiding During Loading */
body.loading #nav-component,
body.loading #hero-component,
body.loading #services-component,
body.loading #process-component,
body.loading #about-component,
body.loading #blog-component,
body.loading #footer-component,
body.loading main {
  opacity: 0;
  transform: translateY(50px);
  pointer-events: none;
}

/* Exception: Mobile nav should always work even during loading */
body.loading .mobile-nav {
  opacity: 0 !important;
  pointer-events: auto !important;
  transform: none !important;
}

body.loading .mobile-nav.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

body.loading .hamburger,
body.loading #mainHamburger {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  display: flex !important;
  z-index: 20000 !important;
}

/* Override nav-component opacity for hamburger specifically */
body.loading #nav-component .hamburger,
body.loading #nav-component #mainHamburger {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  display: flex !important;
  z-index: 20000 !important;
}

/* ===================================
   LIGHT NAVIGATION THEME
   ================================== */

/* Light Header Override */
.hero-header.light {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #000;
}

.hero-header.light .hero-nav a {
  color: rgba(20, 20, 20, 0.8);
}

.hero-header.light .hero-nav a:hover { 
  color: #FFD700; 
}

.hero-header.light .hamburger .bar {
  background: #111;
}

.hero-header.light .mobile-nav {
  background: rgba(255, 255, 255, 0.95);
}

.hero-header.light .mobile-nav .mobile-nav-links a {
  color: #333;
}

.hero-header.light .mobile-nav .mobile-nav-links a:hover {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
}

/* Dark theme mobile nav (for home page) */
.hero-header:not(.light) .mobile-nav {
  background: rgba(0, 0, 0, 0.95) !important;
}

.hero-header:not(.light) .mobile-nav .mobile-nav-links a {
  color: #fff !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-header:not(.light) .mobile-nav .mobile-nav-links a:hover {
  color: #FFD700 !important;
  background: rgba(255, 215, 0, 0.1) !important;
}

/* ===================================
   BUTTON STYLES
   ================================== */
button, .btn-primary {
  background-color: #3B82F6;
  border: none;
  padding: 0.7rem 2rem;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

button:hover, .btn-primary:hover {
  background-color: #2563EB;
  transform: translateY(-2px);
}

/* Small Call to Action */
.small-cta {
  margin-top: 1rem;
  font-size: 0.85rem;
}

.small-cta a {
  color: #333;
  font-weight: bold;
  text-decoration: underline;
}

.small-cta a:hover {
  color: #3B82F6;
}

/* ===================================
   ABOUT US PAGE STYLES
   ================================== */
.about-us-section {
  background: #ffffff;
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.about-us-container h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #101010;
}

.highlight-dark {
  color: #3B82F6;
}

.about-us-subtext {
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
}

.about-us-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 4rem;
  text-align: left;
  align-items: center;
}

.about-us-text {
  flex: 1 1 500px;
}

.about-us-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #101010;
}

.about-us-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.7;
}

.about-us-text ul {
  list-style: none;
  padding: 0;
}

.about-us-text ul li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.about-us-text ul li i {
  color: #3B82F6;
  margin-right: 0.8rem;
  font-size: 1.5rem;
}

.about-us-image {
  flex: 1 1 400px;
}

.about-us-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ===================================
   TERMS COMPONENT STYLES
   ================================== */
.terms-section {
  background: #ffffff;
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #101010;
  text-align: center;
  border-bottom: 3px solid #3B82F6;
  padding-bottom: 1rem;
}

.terms-container h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.5rem 0;
  color: #101010;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.terms-container h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.terms-container h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem 0;
  color: #3B82F6;
  font-weight: 600;
}

.terms-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.terms-list li {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
  position: relative;
}

.terms-list li:before {
  content: "•";
  color: #3B82F6;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.terms-list li strong {
  color: #101010;
  font-weight: 600;
}

.terms-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #3B82F6;
  text-align: center;
}

.terms-footer p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.terms-footer a {
  color: #3B82F6;
  text-decoration: none;
}

.terms-footer a:hover {
  text-decoration: underline;
}

/* Terms Responsive Styles */
@media (max-width: 768px) {
  .terms-section {
    padding: 3rem 1.5rem;
    margin: 1.5rem 0;
  }

  .terms-container h1 {
    font-size: 2rem;
  }
  .terms-container h2 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
  }

  .terms-container h3 {
    font-size: 1.1rem;
    margin: 1.2rem 0 0.8rem 0;
  }

  .terms-content p,
  .terms-list li {
    font-size: 0.95rem;
  }

  .terms-list li {
    padding-left: 1.2rem;
  }
}

@media (max-width: 480px) {
  .terms-container h1 {
    font-size: 1.8rem;
  }
  .terms-container h2 {
    font-size: 1.2rem;
  }

  .terms-container h3 {
    font-size: 1rem;
    margin: 1rem 0 0.7rem 0;
  }

  .terms-content p,
  .terms-list li {
    font-size: 0.9rem;
  }
}

/* ===================================
   PRIVACY POLICY SECTION STYLES
   ================================== */
/* Privacy Policy Section (FAQ style) */
.privacy-policy-section {
  background: #ffffff;
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy-policy-container {
  max-width: 1000px;
  width: 100%;
  text-align: center; /* Center-align headline */
}

.privacy-policy-container h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #101010;
}

.privacy-subtext {
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
}

/* Sections within policy */
.privacy-policy-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: left; /* Left-align body */
}

.privacy-item h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #101010;
}

.privacy-item p,
.privacy-item ul {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.privacy-item ul {
  padding-left: 1.5rem;
}

.privacy-item ul li {
  list-style-type: disc;
  margin-bottom: 1rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .privacy-policy-container h1 {
    font-size: 2.5rem;
  }

  .privacy-subtext {
    font-size: 1rem;
  }

  .privacy-item h2 {
    font-size: 1.8rem;
  }

  .privacy-item p,
  .privacy-item ul {
    font-size: 1rem;
  }
}

/* ===================================
   FAQ SECTION STYLES
   ================================== */
.faq-section {
  background: #ffffff;
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.faq-container h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #101010;
  font-weight: 700;
}

.highlight-dark {
  color: #3B82F6;
}

.faq-subtext {
  font-size: 1.3rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: #3B82F6;
}

.faq-item.active {
  border-color: #3B82F6;
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: #101010;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
  color: #3B82F6;
}

.faq-item.active .faq-question {
  background: #f0f9ff;
  color: #3B82F6;
}

.faq-question i {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: #6b7280;
  margin-left: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #3B82F6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p,
.faq-answer ul {
  padding: 0 2rem 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.faq-answer ul {
  padding-left: 3rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer a {
  color: #3B82F6;
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* FAQ Section Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 1rem 6rem;
  }
  
  .faq-container h1 {
    font-size: 2.5rem;
  }
  
  .faq-subtext {
    font-size: 1.1rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
  }
  
  .faq-answer p, 
  .faq-answer ul {
    padding: 0 1.5rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .faq-answer ul {
    padding-left: 2.5rem;
  }
}

@media (max-width: 480px) {
  .faq-container h1 {
    font-size: 2rem;
  }
  
  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 1.2rem;
  }
  
  .faq-answer p, 
  .faq-answer ul {
    padding: 0 1.2rem 1rem;
    font-size: 0.9rem;
  }
}

/* ===================================
   PRICING SECTION STYLES
   ================================== */
.pricing-section-soft {
  width: 100%;
  background: #f9fafb;
  padding: 4rem 1.5rem;
}

.pricing-container {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.pricing-logo img {
  height: 120px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(20%);
}

.pricing-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #101010;
}

.highlight-dark {
  color: #3B82F6;
}

.pricing-subtext {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.pricing-switcher-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  margin-top: 1.5rem;
}

.pricing-switch-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.15rem;
  user-select: none;
  background: #f7faff;
  border-radius: 32px;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 2px 12px rgba(79,140,255,0.08);
  border: 1px solid #e0e8f7;
}

.pricing-switch-label input[type="checkbox"] {
  display: none;
}

.pricing-switch-label .slider {
  width: 52px;
  height: 28px;
  background: #e0e0e0;
  border-radius: 14px;
  position: relative;
  transition: background 0.3s;
  margin: 0 0.5rem;
  box-shadow: 0 1px 4px rgba(79,140,255,0.10);
}

.pricing-switch-label .slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #4f8cff 60%, #7fd7ff 100%);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 2px 8px rgba(79,140,255,0.15);
}

.pricing-switch-label input[type="checkbox"]:checked + .slider {
  background: #4f8cff;
}

.pricing-switch-label input[type="checkbox"]:checked + .slider:before {
  transform: translateX(24px);
  background: linear-gradient(135deg, #fff 60%, #7fd7ff 100%);
}

#oneTimeLabel, #monthlyLabel {
  font-weight: 600;
  color: #888;
  transition: color 0.3s, background 0.3s;
  padding: 0.2rem 0.7rem;
  border-radius: 16px;
}

#oneTimeLabel.active, #monthlyLabel.active {
  color: #fff;
  background: #4f8cff;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card.popular {
  border: 2px solid #3B82F6;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.badge {
  background-color: #FFD700;
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #101010;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3B82F6;
  margin-bottom: 1rem;
}

.price-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.features li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.features li:before {
  content: "✓";
  color: #3B82F6;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
  padding-left: 0;
}

.card ul li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 0;
}

.card ul li:before {
  content: none;
}

button {
  background: #3B82F6;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
  background-color: #2563EB;
  transform: translateY(-2px);
}

.small-cta {
  margin-top: 1rem;
  font-size: 0.85rem;
}

.small-cta a {
  color: #333;
  font-weight: bold;
  text-decoration: underline;
}

.small-cta a:hover {
  color: #3B82F6;
}

.retainer-info {
  margin: 1rem 0 0.5rem 0;
  font-size: 1.05rem;
  text-align: left;
}

.retainer-info span {
  display: block;
  margin-bottom: 0.2rem;
}

.retainer-desc {
  color: #6a7fa7;
  font-size: 0.97em;
  margin-left: 0.2em;
}

.retainer-bottom {
  margin: 2.5rem auto 0 auto;
  text-align: center;
  max-width: 600px;
}

/* Responsive Pricing */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .card {
    max-width: 100%;
  }
  
  .pricing-container h2 {
    font-size: 2rem;
  }
  
  .price {
    font-size: 2rem;
  }
}
