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

html {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}

.text-center {
  text-align: center;
}
.leading-tight {
  line-height: 1.25;
}
.leading-relaxed {
  line-height: 1.625;
}

/* Colors */
.text-white {
  color: #ffffff;
}
.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-black {
  color: #000000;
}
.text-black\/70 {
  color: rgba(0, 0, 0, 0.7);
}

.bg-black {
  background-color: #000000;
}
.bg-white {
  background-color: #ffffff;
}
.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Layout */
.min-h-screen {
  min-height: 100vh;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.w-full {
  width: 100%;
}

/* Flexbox */
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.space-x-2 > * + * {
  margin-left: 0.5rem;
}
.space-x-3 > * + * {
  margin-left: 0.75rem;
}
.space-x-4 > * + * {
  margin-left: 1rem;
}
.space-x-8 > * + * {
  margin-left: 2rem;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}

/* Grid */
.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}

/* Spacing */
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-20 {
  margin-bottom: 5rem;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  position: relative;
  z-index: 50;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.logo:hover {
  box-shadow: 0 0 0 2px #06b6d4;
}

.logo svg {
  color: #000000;
}

.brand-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #06b6d4;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-primary {
  background-color: #ffffff;
  color: #000000;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #f3f4f6;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #06b6d4;
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

.btn-cyan {
  background-color: #06b6d4;
  color: #000000;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.btn-cyan:hover {
  background-color: #0891b2;
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
  transform: translateY(-1px);
}

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

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #000000;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.badge:hover {
  box-shadow: 0 0 0 2px #06b6d4;
}

/* Hero Section */
.hero {
  padding: 5rem 1.5rem;
}

.hero-content {
  text-align: center;
  margin-bottom: 4rem;
}

/* Map Section */
.map-section {
  margin-bottom: 4rem;
}

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

.map-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.map-header h3 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.map-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.map-container:hover {
  border-color: #06b6d4;
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
}

/* Adding logo overlay for Waide Mobility branding on map */
.map-logo-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

/* Additional overlay for fullscreen mode to cover Situm logo */
.map-logo-overlay-fullscreen {
  position: absolute;
  top: 8px;
  left: 8px;
  display: none;
  align-items: center;
  gap: 8px;
  background: #000000;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #06b6d4;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.4);
  min-width: 180px;
  min-height: 48px;
}

.map-logo-overlay:hover {
  border-color: #06b6d4;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.map-logo-overlay .logo {
  color: #06b6d4;
}

.map-logo-overlay .logo-text,
.map-logo-overlay .brand-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Styling for fullscreen overlay logo */
.map-logo-overlay-fullscreen .logo {
  color: #06b6d4;
  width: 24px;
  height: 24px;
}

.map-logo-overlay-fullscreen .brand-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

/* Show fullscreen overlay when iframe is expanded or in fullscreen */
@media (min-width: 900px) {
  .map-logo-overlay-fullscreen {
    display: flex !important;
  }
}

/* Detect fullscreen state and show overlay */
.map-container:fullscreen .map-logo-overlay-fullscreen,
.map-container:-webkit-full-screen .map-logo-overlay-fullscreen,
.map-container:-moz-full-screen .map-logo-overlay-fullscreen {
  display: flex !important;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(to right, #06b6d4, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.feature-card {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  group: hover;
}

.feature-card:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 12px 48px rgba(6, 182, 212, 0.3);
  border-color: #06b6d4;
}

.card-image {
  height: 12rem;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover .card-content {
  transform: translateY(-4px);
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.feature-card:hover .card-content h3 {
  color: #06b6d4;
}

.card-content p {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.feature-card:hover .card-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 5rem;
}

.stat-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.section-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.625;
}

/* Accessible Navigation Section */
.accessible-nav-section {
  padding: 5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.content-column h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.content-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #06b6d4;
  border-radius: 50%;
  flex-shrink: 0;
}

.three-column-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}


.spaces-carousel-section {
  padding: 5rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.carousel-container {
  position: relative;
  overflow-x: hidden;
  margin-top: 2rem;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  animation: scrollLeft 60s linear infinite;
  width: max-content; /* Dynamic width based on content */
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-card {
  flex-shrink: 0;
  width: 384px;
  height: 320px;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}

.carousel-card:hover {
  transform: scale(1.05);
  border-color: #06b6d4;
  box-shadow: 0 12px 48px rgba(6, 182, 212, 0.3);
}

.carousel-card .card-image {
  height: 192px;
  width: 100%;
  object-fit: cover;
}

.carousel-card .card-content {
  padding: 2rem;
}

.carousel-card .card-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.carousel-card:hover .card-content h4 {
  color: #06b6d4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .spaces-carousel-section {
    padding: 3rem 1rem;
  }

  .carousel-card {
    width: 300px;
    height: 250px;
  }

  .carousel-card .card-image {
    height: 150px;
  }
}

/* Solutions Section */
.solutions-section {
  padding: 8rem 1rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.solution-card {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}

.solution-card:hover {
  transform: scale(1.05);
  border-color: #06b6d4;
  box-shadow: 0 12px 48px rgba(6, 182, 212, 0.3);
}

.solution-card .card-content {
  padding: 2rem;
}

.solution-card .card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.solution-card:hover .card-content h3 {
  color: #06b6d4;
}

.solution-card .card-content ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.solution-card .card-content ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
  padding: 5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.content-column h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.stats-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stat-card {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.stat-card svg {
  color: #06b6d4;
  margin: 0 auto 0.75rem;
}

/* Mission & Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.mission-card {
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mission-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-color: #06b6d4;
}

.mission-icon {
  height: 12rem;
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon svg {
  color: #0891b2;
}

.mission-content {
  padding: 2rem;
}

.mission-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.mission-content p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.625;
}

/* Values Section */
.values-section {
  margin-bottom: 5rem;
}

.values-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-item {
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  background-color: #06b6d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon svg {
  color: #000000;
}

.value-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.value-item p {
  color: rgba(255, 255, 255, 0.7);
}

/* Platform Features */
.platform-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.platform-card {
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.platform-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-color: #06b6d4;
}

.platform-icon {
  height: 12rem;
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon svg {
  color: #0891b2;
}

.platform-content {
  padding: 1.5rem;
}

.platform-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.platform-content p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.platform-content ul {
  list-style: none;
  padding: 0;
}

.platform-content ul li {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Solutions Layout */
.solutions-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.solutions-column {
}

.solutions-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.solution-item {
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.solution-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-color: #06b6d4;
}

.solution-icon {
  height: 8rem;
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon svg {
  color: #0891b2;
}

.solution-content {
  padding: 1.5rem;
}

.solution-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.solution-content p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 1.5rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pricing-toggle span {
  color: rgba(255, 255, 255, 0.8);
}

.discount {
  color: #06b6d4;
  font-size: 0.875rem;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
  transition: background-color 0.3s ease;
}

.toggle-switch:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(20px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.pricing-card {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: #06b6d4;
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

.pricing-card.featured {
  transform: scale(1.05);
  border-color: #06b6d4;
  border-width: 2px;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #06b6d4;
  color: #000000;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
}

.period {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

.custom-price {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.7);
}

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

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.features-list svg {
  color: #06b6d4;
  flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 5rem;
}

.faq-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #06b6d4;
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: #06b6d4;
}

.form-select {
  cursor: pointer;
}

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

.password-input {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #06b6d4;
}

.eye-icon {
  width: 16px;
  height: 16px;
}

.checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  accent-color: #06b6d4;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.terms-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.4;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.forgot-link,
.auth-link {
  color: #06b6d4;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.forgot-link:hover,
.auth-link:hover {
  color: #0891b2;
}

/* Auth Pages */
.auth-card {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.auth-card:hover {
  box-shadow: 0 0 0 2px #06b6d4;
}

.auth-header {
  padding: 2rem 2rem 0;
  text-align: center;
}

.auth-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}

.auth-form {
  padding: 2rem;
}

.auth-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

/* Contact Page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-form-card {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.contact-form-card:hover {
  box-shadow: 0 0 0 2px #06b6d4;
}

.card-header {
  padding: 2rem 2rem 0;
}

.card-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-form {
  padding: 2rem;
}

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

.info-card {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.info-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-item svg {
  color: #06b6d4;
  flex-shrink: 0;
}

.info-item span {
  color: rgba(255, 255, 255, 0.8);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-item svg {
  color: #06b6d4;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-item h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  max-width: 28rem;
  margin: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.success-icon {
  color: #06b6d4;
  margin: 0 auto 1.5rem;
}

.modal-content h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Accessibility Widget */
.accessibility-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.accessibility-toggle {
  width: 56px;
  height: 56px;
  background-color: #06b6d4;
  color: #000000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
  transition: all 0.3s ease;
  font-weight: 700;
}

.accessibility-toggle:hover {
  background-color: #0891b2;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.accessibility-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  display: none;
}

.accessibility-panel.show {
  display: block;
}

.accessibility-panel h3 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.accessibility-controls {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accessibility-controls button {
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accessibility-controls button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #06b6d4;
}

.accessibility-controls button.active {
  background-color: #06b6d4;
  color: #000000;
  border-color: #06b6d4;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1.5rem;
}

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

.footer-brand {
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: #ffffff;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.link-group h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.link-group ul {
  list-style: none;
  padding: 0;
}

.link-group ul li {
  margin-bottom: 0.5rem;
}

.link-group ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.link-group ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

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

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

.footer-legal a:hover {
  color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-384px * 10 - 32px * 9));
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-slide-up {
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.animate-slide-up-delay {
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.animate-slide-up-delay-2 {
  animation: fadeInUp 0.6s ease 0.6s forwards;
  opacity: 0;
}

.animate-slide-in-left {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-slide-in-right {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.animate-counter {
  animation: fadeInUp 0.6s ease forwards;
}

/* Accessibility Features */
.high-contrast {
  filter: contrast(150%) brightness(120%);
}

.large-font {
  font-size: 1.2em !important;
}

.dyslexia-font {
  font-family: "OpenDyslexic", Arial, sans-serif !important;
}

.focus-mode {
  background-color: #1a1a1a !important;
}

.focus-mode * {
  background-color: transparent !important;
  border-color: #333 !important;
}

.color-blind-support {
  filter: grayscale(100%);
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .two-column-layout {
    grid-template-columns: 1fr 1fr;
  }

  .three-column-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 2fr 1fr;
  }

  .stats-column {
    grid-template-columns: 1fr 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .platform-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .solutions-layout {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 2fr 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 3fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .nav {
    padding: 1.5rem 3rem;
  }

  .hero {
    padding: 5rem 3rem;
  }

  .accessible-nav-section {
    padding: 5rem 3rem;
  }

  .spaces-carousel-section {
    padding: 5rem 3rem;
  }

  .solutions-section {
    padding: 8rem 3rem;
  }

  .about-section {
    padding: 5rem 3rem;
  }

  .pricing-section {
    padding: 5rem 3rem;
  }

  .footer {
    padding: 3rem 3rem;
  }

  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Print Styles */
@media print {
  .accessibility-widget,
  .nav,
  .footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero-title,
  .section-header h2 {
    color: black;
  }
}
