/* Common styles for all content pages */
.page-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 5;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.page-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.content-card {
  background-color: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(39, 39, 42, 0.5);
  padding: 2.5rem;
  width: 100%;
  max-width: 1000px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

/* Logo link style */
.logo {
  text-decoration: none;
}

/* Make nav links actual links instead of buttons */
.nav-links a {
  text-decoration: none;
  background-color: transparent;
  border: none;
  color: #a1a1aa;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
}

.nav-links a:hover {
  color: #f8fafc;
  background-color: rgba(63, 63, 70, 0.3);
}

.nav-links a.primary {
  background-color: rgba(63, 63, 70, 0.8);
  color: #f8fafc;
  border: 1px solid rgba(82, 82, 91, 0.5);
}

.nav-links a.primary:hover {
  background-color: rgba(82, 82, 91, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.nav-links a.active {
  color: #f8fafc;
  background-color: rgba(63, 63, 70, 0.4);
}

/* About page styles */
.about-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #f8fafc;
}

.about-section p {
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin: 2.5rem 0;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  background-color: rgba(39, 39, 42, 0.4);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(63, 63, 70, 0.5);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #a1a1aa, #f8fafc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: #a1a1aa;
  font-size: 0.875rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.team-member {
  background-color: rgba(39, 39, 42, 0.4);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(63, 63, 70, 0.5);
}

.member-avatar {
  width: 80px;
  height: 80px;
  background-color: #18181b;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-image: url("https://t4.ftcdn.net/jpg/01/18/12/37/360_F_118123707_HX4dWaSRTW6lxwKn5qTrwhL1HC0YuzB1.jpg")
}

.team-member h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f8fafc;
}

.team-member p {
  color: #a1a1aa;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.values-list {
  color: #a1a1aa;
  line-height: 1.6;
  margin-left: 1.5rem;
}

.values-list li {
  margin-bottom: 0.75rem;
}

.values-list strong {
  color: #f8fafc;
}

/* Services page styles */
.services-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: rgba(39, 39, 42, 0.4);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(63, 63, 70, 0.5);
  transition: all 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(82, 82, 91, 0.8);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f8fafc;
}

.service-card p {
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  color: #f8fafc;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(248, 250, 252, 0.3);
  transition: all 0.2s ease;
}

.service-link:hover {
  border-bottom-color: #f8fafc;
}

.cta-section {
  text-align: center;
  background-color: rgba(39, 39, 42, 0.4);
  border-radius: 0.75rem;
  padding: 2.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(63, 63, 70, 0.5);
}

.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f8fafc;
}

.cta-section p {
  color: #a1a1aa;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background-color: rgba(63, 63, 70, 0.8);
  color: #f8fafc;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid rgba(82, 82, 91, 0.5);
  transition: all 0.2s ease;
}

.cta-button:hover {
  background-color: rgba(82, 82, 91, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* Contact page styles */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.contact-card {
  background-color: rgba(39, 39, 42, 0.4);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(63, 63, 70, 0.5);
}

.contact-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f8fafc;
}

.contact-card p {
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-form-container {
  background-color: rgba(39, 39, 42, 0.4);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(63, 63, 70, 0.5);
}

.contact-form-container h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f8fafc;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #f8fafc;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: rgba(23, 23, 23, 0.8);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 0.375rem;
  padding: 0.75rem;
  color: #f8fafc;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(248, 250, 252, 0.5);
  box-shadow: 0 0 0 2px rgba(63, 63, 70, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #71717a;
}

.form-button {
  background-color: rgba(63, 63, 70, 0.8);
  color: #f8fafc;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(82, 82, 91, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.form-button:hover {
  background-color: rgba(82, 82, 91, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.map-section {
  margin-top: 2rem;
}

.map-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.map-container {
  background-color: rgba(39, 39, 42, 0.4);
  border-radius: 0.75rem;
  height: 250px;
  overflow: hidden;
  border: 1px solid rgba(63, 63, 70, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-placeholder {
  text-align: center;
}

.map-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.map-placeholder p {
  color: #f8fafc;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.map-info {
  color: #a1a1aa;
  font-size: 0.875rem;
}

/* Fix emoji display in contact page */
.contact-icon, .map-icon, .service-icon {
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}
