/* Services Page Styles */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  padding: 0 5%;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

#services-hero {
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin: 4rem 0 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-header .accent-large {
  color: #24B0B7;
}

.section-header p {
  font-size: 1.2rem;
  color: #cccccc;
  margin: 0;
}

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

.service-card {
  background: linear-gradient(135deg, rgba(36, 176, 183, 0.05), rgba(36, 176, 183, 0));
  border: 1px solid rgba(36, 176, 183, 0.2);
  border-radius: 12px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out;
  animation-delay: calc(var(--index) * 0.1s);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  border-color: #24B0B7;
  box-shadow: 0 8px 30px rgba(36, 176, 183, 0.15);
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #24B0B7, #5fd4db);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #fff;
}

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

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.service-features li {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.service-features i {
  color: #24B0B7;
  margin-right: 0.75rem;
}

.cta-btn {
  background: linear-gradient(135deg, #24B0B7, #5fd4db);
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-size: 0.9rem;
}

.cta-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(36, 176, 183, 0.3);
}

/* Process Section */
.process-section {
  margin: 6rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(36, 176, 183, 0.2);
  border-bottom: 1px solid rgba(36, 176, 183, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.process-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.process-section .accent-large {
  color: #24B0B7;
}

.section-subtitle {
  text-align: center;
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

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

.step {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  animation-delay: calc(var(--step) * 0.1s);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #24B0B7, #5fd4db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  color: #000;
}

.step h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.5rem 0;
  color: #fff;
}

.step p {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(36, 176, 183, 0.1), rgba(36, 176, 183, 0.05));
  border: 1px solid rgba(36, 176, 183, 0.2);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  margin: 4rem 0;
  animation: fadeInUp 0.8s ease-out;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.cta-btn-large {
  display: inline-block;
  background: linear-gradient(135deg, #24B0B7, #5fd4db);
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(36, 176, 183, 0.3);
}

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

/* Header Navigation */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  gap: 70px;
  position: relative;
  z-index: 1;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #24B0B7 0%, #1a1a2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: 0.3s ease;
}

.header-logo:hover {
  filter: drop-shadow(0 0 8px #24B0B7);
}

.header-logo span {
  font-size: 56px;
  color: #24B0B7;
  line-height: 0.2;
}

nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0;
  justify-content: flex-end;
}

.nav-item {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: #24B0B7;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #24B0B7, #5fd4db);
  border-radius: 2px;
  transition: width 0.3s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 0 2rem;
  }

  header {
    gap: 30px;
    padding: 1rem 0;
  }

  .header-logo {
    font-size: 1.5rem;
  }

  .header-logo span {
    font-size: 28px;
  }

  nav {
    gap: 1.5rem;
  }

  .nav-item {
    font-size: 0.9rem;
  }

  .section-header h1 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 2rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 428px) {
  body {
    padding: 0 1rem;
  }

  header {
    gap: 10px;
    padding: 1rem 0;
  }

  .header-logo {
    font-size: 1.2rem;
  }

  .header-logo span {
    font-size: 18px;
  }

  nav {
    gap: 0.75rem;
  }

  .nav-item {
    font-size: 0.7rem;
  }

  .section-header h1 {
    font-size: 1.8rem;
  }

  .services-grid {
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .cta-btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .process-steps {
    gap: 1rem;
  }

  .cta-section {
    padding: 1.5rem 1rem;
    margin: 2rem 0;
  }
}
