/* Combined Pages Styles - Home, Services, Pricing */

/* ============================================
   COMMON NAVIGATION STYLES
   ============================================ */

.nav-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  padding: 0 3rem;
}

.nav-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-foreground);
  text-decoration: none;
  display: inline-block;
  overflow: visible;
  min-width: 280px;
}

/* Logo hover effect - only on home page */
.logo-text-main,
.logo-text-tagline {
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
}

.logo-text-main {
  opacity: 1;
  transform: translateY(0);
}

.logo-text-tagline {
  position: absolute;
  top: 0.25rem;
  left: 0;
  opacity: 0;
  transform: translateY(5px);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
}

.nav-logo:hover .logo-text-main {
  opacity: 0;
  transform: translateY(-5px);
}

.nav-logo:hover .logo-text-tagline {
  opacity: 1;
  transform: translateY(0);
}

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

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  opacity: 0.7;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.95;
}

.nav-link.active {
  opacity: 1;
}

.nav-icon {
  display: none;
}

.nav-text {
  position: relative;
  display: inline-block;
}

.nav-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover .nav-text::after,
.nav-link.active .nav-text::after {
  transform: scaleX(1);
}

.nav-cta {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--color-foreground);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-foreground);
  opacity: 0.7;
}

.theme-toggle:hover {
  opacity: 1;
  transform: scale(1.05);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .sun-icon {
  display: none;
}

.theme-toggle .moon-icon {
  display: block;
}

:root .theme-toggle .sun-icon {
  display: block;
}

:root .theme-toggle .moon-icon {
  display: none;
}

.dark .theme-toggle .sun-icon {
  display: none;
}

.dark .theme-toggle .moon-icon {
  display: block;
}

.nav-mobile-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-foreground);
}

.mobile-menu {
  position: fixed;
  top: 5rem;
  left: 1rem;
  right: 1rem;
  display: none;
  background: rgba(30, 64, 175, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-top: 1px solid rgba(147, 197, 253, 0.5);
  border-radius: 1.5rem;
  padding: 1.25rem;
  z-index: 40;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(
    to bottom,
    rgba(96, 165, 250, 0.15) 0%,
    rgba(96, 165, 250, 0.10) 20%,
    rgba(59, 130, 246, 0.06) 40%,
    rgba(59, 130, 246, 0.03) 60%,
    transparent 80%,
    transparent 100%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 39;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  text-decoration: none;
  position: relative;
  z-index: 1;
}

/* ============================================
   COMMON HERO & BACKGROUND STYLES
   ============================================ */

.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-background);
  overflow: hidden;
  z-index: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-background);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 900px 700px at 75% 45%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.65) 25%, rgba(0, 0, 0, 0.85) 55%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 1;
}

.hero-lights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1.5;
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.light-particle {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.hero-lightbar {
  position: absolute;
  top: 0;
  left: -200px;
  width: 200px;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(96, 165, 250, 0.05) 20%,
    rgba(96, 165, 250, 0.15) 40%,
    rgba(147, 197, 253, 0.25) 50%,
    rgba(96, 165, 250, 0.15) 60%,
    rgba(96, 165, 250, 0.05) 80%,
    transparent 100%
  );
  z-index: 1.5;
  pointer-events: none;
  opacity: 1;
  filter: blur(40px);
  animation: lightbarSweep 8s ease-in-out infinite;
}

@keyframes lightbarSweep {
  0% {
    left: -200px;
  }
  100% {
    left: 100%;
  }
}

.hero-scroll-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
  transition: background-color 0.1s ease-out;
  pointer-events: none;
}

.hero-content-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
}

.hero-content {
  position: relative;
  color: white;
  padding: 2rem 0;
  width: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.scroll-indicator-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  opacity: 0.7;
  letter-spacing: 0.05em;
}

.scroll-indicator-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-foreground);
  opacity: 0.3;
  border-radius: 50%;
  color: var(--color-foreground);
  animation: bounce 2s infinite;
}

.scroll-indicator:hover .scroll-indicator-arrow {
  opacity: 0.5;
  color: var(--color-foreground);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.main-content-wrapper {
  position: relative;
  z-index: 1;
  background-color: var(--color-background);
}

/* ============================================
   COMMON SERVICE CARD STYLES
   ============================================ */

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

.service-card {
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  background: rgba(30, 64, 175, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-top: 1px solid rgba(147, 197, 253, 0.5);
  border-radius: 1.5rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(
    to bottom,
    rgba(96, 165, 250, 0.15) 0%,
    rgba(96, 165, 250, 0.10) 20%,
    rgba(59, 130, 246, 0.06) 40%,
    rgba(59, 130, 246, 0.03) 60%,
    transparent 80%,
    transparent 100%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.01) 10px,
      rgba(255, 255, 255, 0.01) 20px
    );
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
  color: rgba(96, 165, 250, 1);
  flex-shrink: 0;
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  margin-bottom: 1rem;
}

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

.service-features li {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}

/* ============================================
   COMMON FOOTER STYLES
   ============================================ */

.footer {
  position: relative;
  padding: 2rem 0;
  background-color: transparent;
  margin-top: 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0 3rem;
}

.footer-brand {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-foreground);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--color-foreground);
  opacity: 0.2;
  margin: 0.5rem 0;
}

.footer-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  opacity: 0.7;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1.5rem;
}

.footer-email {
  font-size: 0.875rem;
  color: var(--color-foreground);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s;
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}

.footer-email:hover {
  opacity: 1;
}

.footer-address {
  font-size: 0.875rem;
  color: var(--color-foreground);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.25rem;
}

/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

.corner-light {
  position: fixed;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.5) 0%, rgba(30, 64, 175, 0.3) 30%, rgba(30, 64, 175, 0.1) 60%, transparent 100%);
  pointer-events: none;
  z-index: 3;
  filter: blur(55px);
  transform: translate(-50%, -50%);
}

.corner-light-1 {
  top: 0;
  left: 0;
}

.corner-light-2 {
  top: 0;
  left: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--color-foreground);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.75;
  max-width: 48rem;
  color: var(--color-foreground);
  margin-bottom: 2rem;
  font-weight: 400;
}

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

.hero-btn-outline {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-btn-outline:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cta-section {
  position: relative;
  padding: 8rem 0;
  background-color: transparent;
  color: var(--color-foreground);
  overflow: hidden;
}

.cta-overlay {
  display: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--color-foreground);
}

.cta-section p {
  color: var(--color-foreground);
  opacity: 0.9;
}

.cta-btn {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--color-foreground);
  border-opacity: 0.2;
  color: var(--color-foreground);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================ */

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--color-foreground);
  text-align: left;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.75;
  max-width: 48rem;
  color: var(--color-foreground);
  opacity: 0.9;
  margin-bottom: 0;
  text-align: left;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.read-more-btn {
  width: 100%;
  margin-top: auto;
  background-color: var(--color-foreground) !important;
  color: var(--color-background) !important;
  border-color: var(--color-foreground) !important;
}

.read-more-btn:hover {
  opacity: 0.9 !important;
}

.service-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  background-color: var(--color-card);
  border-top: 1px solid var(--color-border);
  border-radius: 2rem 2rem 0 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  overflow: hidden;
}

.service-drawer.active {
  transform: translateY(0);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  z-index: 999;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-content {
  padding: 2.5rem;
  overflow-y: auto;
  max-height: 85vh;
}

.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.drawer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-foreground);
  padding-right: 3rem;
}

.drawer-section {
  margin-bottom: 2.5rem;
}

.drawer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-foreground);
}

.drawer-section p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
}

/* ============================================
   PRICING PAGE SPECIFIC STYLES
   ============================================ */

.services-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
  gap: 1.5rem;
  margin-bottom: 8rem;
  max-width: 100%;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-selection-grid.expanded {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-checkbox-card {
  position: relative;
  cursor: pointer;
  display: block;
  height: 100px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-selection-grid.expanded .service-checkbox-card {
  height: auto;
}

.service-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-checkbox-content {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  padding: 0 !important;
  background: rgba(30, 64, 175, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-top: 1px solid rgba(147, 197, 253, 0.5);
  border-radius: 1.5rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.service-checkbox-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(
    to bottom,
    rgba(96, 165, 250, 0.15) 0%,
    rgba(96, 165, 250, 0.10) 20%,
    rgba(59, 130, 246, 0.06) 40%,
    rgba(59, 130, 246, 0.03) 60%,
    transparent 80%,
    transparent 100%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.service-checkbox-content:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-checkbox-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.01) 10px,
      rgba(255, 255, 255, 0.01) 20px
    );
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.service-checkbox-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.service-checkbox:checked + .service-checkbox-content {
  border: 2px solid rgba(147, 197, 253, 0.8);
  border-top: 2px solid rgba(147, 197, 253, 1);
  background: rgba(30, 64, 175, 0.18);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-checkbox:checked + .service-checkbox-content::before {
  background: linear-gradient(
    to bottom,
    rgba(96, 165, 250, 0.22) 0%,
    rgba(96, 165, 250, 0.15) 20%,
    rgba(59, 130, 246, 0.1) 40%,
    rgba(59, 130, 246, 0.06) 60%,
    transparent 80%,
    transparent 100%
  );
}

.service-checkbox:checked + .service-checkbox-content::after {
  opacity: 0.5;
}

.service-checkbox:checked + .service-checkbox-content:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(59, 130, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-checkbox-header > div:nth-child(2) {
  flex: 1;
  min-width: 0;
}

.service-checkbox-header h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-checkbox-header p {
  font-size: 0.8rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-foreground);
  flex-shrink: 0;
}

.pricing-explanation {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.5rem;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
              padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-10px);
}

.pricing-explanation p {
  margin: 0;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted-foreground);
}

.services-selection-grid.expanded .pricing-explanation {
  max-height: 500px;
  opacity: 1;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  transform: translateY(0);
}

.cart-preview {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: var(--color-foreground);
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 40;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cart-preview.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cart-preview:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px) scale(1);
}

.cart-preview-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-preview-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-background);
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.cart-preview-amount .currency {
  font-size: 1rem;
}

.cart-preview-arrow {
  width: 28px;
  height: 28px;
  border: none;
  background-color: transparent;
  color: var(--color-background);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.cart-preview-arrow:hover {
  transform: translateX(2px);
}

.cart-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-modal {
  background-color: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cart-modal-overlay.visible .cart-modal {
  transform: scale(1);
}

.cart-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.cart-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin: 0;
}

.cart-modal-subtitle {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin: 0.25rem 0 0 0;
}

.cart-close-btn {
  width: 32px;
  height: 32px;
  border: none;
  background-color: transparent;
  color: var(--color-foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

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

.cart-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.cart-modal-line-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.package-section {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.package-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin: 0;
}

.package-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-foreground);
  opacity: 0.7;
}

.package-addons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem 0.875rem 1rem;
}

.package-addons:empty {
  display: none;
}

.line-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.line-item-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  flex: 1;
}

.line-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-card-border);
  background-color: var(--color-card);
  color: var(--color-foreground);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-foreground);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-foreground);
  min-width: 24px;
  text-align: center;
}

.checkbox-line-item {
  flex-direction: row;
  align-items: center;
}

.line-item-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  flex: 1;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}

.line-item-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--color-foreground);
}

.line-item-price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cart-modal-footer {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-modal-total {
  text-align: center;
}

.cart-modal-total-label {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}

.cart-modal-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.cart-modal-amount .currency {
  font-size: 1.5rem;
  opacity: 0.8;
}

.faq-section {
  position: relative;
  background-color: var(--color-card);
  overflow: hidden;
}

.dark .faq-section {
  background-color: var(--color-card);
}

.faq-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, 
      var(--color-background) 0%, 
      transparent 15%, 
      transparent 85%, 
      var(--color-background) 100%
    );
  z-index: 0;
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-section h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-foreground);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.875rem;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .nav-header {
    padding: 0 1.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-mobile-right {
    display: flex;
  }
  
  .hero {
    margin-top: 4.5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .scroll-indicator {
    bottom: 2rem;
  }
  
  .scroll-indicator-text {
    font-size: 0.75rem;
  }
  
  .scroll-indicator-arrow {
    width: 36px;
    height: 36px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-selection-grid {
    margin-bottom: 10rem;
    gap: 1rem;
  }
  
  .services-selection-grid.expanded {
    gap: 1rem;
  }
  
  .service-checkbox-card {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .service-checkbox-content {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .service-checkbox-header {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem 1.25rem;
  }
  
  .pricing-explanation {
    padding: 0 1.25rem;
  }
  
  .services-selection-grid.expanded .pricing-explanation {
    padding: 0.75rem 1.25rem 1.25rem 1.25rem;
  }
  
  .footer-content {
    padding: 0 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
