/* Base Styles */
:root {
  --color-background: #000000;
  --color-foreground: #ffffff;
  --color-primary: #ff4500;
  --color-secondary: #1e1e1e;
  --color-accent: #ff6b35;
  --color-muted: #6b7280;
  --color-border: #333333;
  --color-card: #111111;
  --color-blue: #0ea5e9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* Focus styles for better accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/*********************************************************************/
/*********************************************************************/
/*********************************************************************/

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ff4500;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #97dafc;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/




/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease-in-out;
  padding: 1rem 0;
  will-change: transform, background-color;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}

.logo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ff6b6b, #a16bff, #33a8ff);
  border-radius: 50%;
  opacity: 0.8;
}

.logo-inner {
  position: absolute;
  inset: 0.25rem;
  background-color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-inner span {
  color: white;
  font-weight: bold;
  font-size: 0.75rem;
}

.logo-text {
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

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

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

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: white;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.button {
  display: inline-block;
  background-color: var(--color-blue);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: #0c8bca;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(14, 165, 233, 0.3);
}

.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
}

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

.mobile-nav-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.mobile-nav-link {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: white;
}

.mobile-button {
  margin-top: 0.5rem;
  text-align: center;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("images/hero-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Dark overlay for better text readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.3s;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-size: clamp(1rem, 4vw, 1.875rem);
  font-weight: 300;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fadeIn 0.8s forwards 1s, bounce 1.5s infinite 1.5s;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 10;
}

.scroll-indicator:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateX(-50%) scale(1.1);
}

/* Mobile optimization for hero background */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--color-background), #111);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
}

.section-header.visible {
  animation: fadeInUp 0.6s forwards;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--color-muted);
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

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

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

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

.service-card {
  background-color: rgba(17, 17, 17, 0.5);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  backdrop-filter: blur(8px);
  will-change: transform, border-color;
}

.service-card.visible {
  animation: fadeInUp 0.6s forwards;
}

.service-card:hover {
  border-color: rgba(255, 69, 0, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.15);
}

.service-icon {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  font-weight: 600;
}

.service-card:hover .service-title {
  color: var(--color-primary);
}

.service-description {
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0;
}

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

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

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--color-muted);
  transition: color 0.2s ease;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: white;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-style: normal;
}

.contact-list > div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-list svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-list span,
.contact-list a {
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: white;
}

.copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-muted);
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero {
    background-attachment: scroll;
  }
}

/* Print styles */
@media print {
  .header,
  .scroll-indicator {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    height: auto;
    padding: 2rem 0;
    background: none;
  }

  .hero::before {
    display: none;
  }
}

/* Page-specific styles */

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Active navigation link */
.nav-link.active,
.mobile-nav-link.active {
  color: var(--color-primary);
}

/* About Page Styles */
.about-section {
  padding: 5rem 0;
}

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

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.about-image img {
  /*width: 100%;
  height: auto;*/
  border-radius: 0.5rem;
}

/* Mission Section */
.mission-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #111, #000);
}

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

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

.mission-card {
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.mission-card ul {
  text-align: left;
  margin-top: 1rem;
}

.mission-card li {
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

/* Team Section */
.team-section {
  padding: 5rem 0;
}

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

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.team-card {
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.team-image {
  margin-bottom: 1.5rem;
}

.team-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Methodology Page Styles */
.methodology-section {
  padding: 5rem 0;
}

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

@media (min-width: 768px) {
  .methodology-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.methodology-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.methodology-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.methodology-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #111, #000);
}

.process-timeline {
  margin-top: 3rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.process-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.process-content p {
  margin-bottom: 1rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.process-list {
  list-style: none;
  margin-top: 1rem;
}

.process-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

.process-list li::before {
  content: "•";
  color: var(--color-primary);
  position: absolute;
  left: 0;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
}

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

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 69, 0, 0.5);
}

.benefit-icon {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.contact-form-container p {
  color: var(--color-muted);
  margin-bottom: 2rem;
}

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

@media (min-width: 640px) {
  .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.required {
  color: var(--color-primary);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.25rem;
  background: rgba(17, 17, 17, 0.5);
  color: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid #22c55e;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.form-success h3 {
  color: #22c55e;
  margin-bottom: 1rem;
}

/* Contact Info */
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.contact-info p {
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.info-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.info-content p,
.info-content address {
  color: var(--color-muted);
  font-style: normal;
  line-height: 1.6;
}

.info-content a {
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.info-content a:hover {
  color: white;
}

.social-media {
  margin-top: 2rem;
}

.social-media h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-muted);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* Map Section */
.map-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #111, #000);
}

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

.map-placeholder {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: auto;
}

/* Services Page Styles */
.services-overview {
  padding: 5rem 0;
}

.overview-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.overview-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.overview-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--color-muted);
  font-size: 1.125rem;
}

/* Detailed Services */
.detailed-services {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #111, #000);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail.reverse {
    direction: rtl;
  }

  .service-detail.reverse > * {
    direction: ltr;
  }
}

.service-detail-content {
  padding: 2rem;
}

.service-detail .service-icon {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.service-detail h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.service-detail p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.service-detail h4 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: white;
}

.service-detail ul {
  margin-bottom: 2rem;
}

.service-detail li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

.service-detail li::before {
  content: "•";
  color: var(--color-primary);
  position: absolute;
  left: 0;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(255, 69, 0, 0.1);
  color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 69, 0, 0.3);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff6b35 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button-outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 0.75rem 1.5rem;
  border: 2px solid white;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.button-outline:hover {
  background: white;
  color: var(--color-primary);
}
