/* Services Page Specific Styles */
:root {
  --dark-bg: #121212;
  --dark-surface: #1e1e1e;
  --dark-surface-lighter: #2d2d2d;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-disabled: rgba(255, 255, 255, 0.5);
  --accent-blue: #4f75ff;
  --accent-purple: #6539ff;
  --accent-gradient: linear-gradient(107deg, #00a6c4 0%, #00ccde 30%, #4f75ff 69%, #6539ff 100%);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  --border-color: rgba(255, 255, 255, 0.1);
}

/* Import fonts */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Roboto:wght@300;400;500&family=DM+Serif+Display&display=swap");

/* Ensure the page has the correct background */
.services-page {
  background-color: var(--dark-bg) !important;
  color: var(--text-primary) !important;
}

#primary.content-area.services-page {
  background-color: var(--dark-bg) !important;
}

.services-page .site-main {
  background-color: var(--dark-bg) !important;
}

/* Hero Section */
.services-hero {
  position: relative;
  padding: 120px 0 80px;
  background-color: var(--dark-bg);
  overflow: hidden;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-line {
  display: inline-block;
  width: 35px;
  height: 2px;
  background: var(--accent-blue);
  margin-bottom: 15px;
}

.services-hero-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  color: var(--accent-blue);
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.services-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.services-hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services-hero-gradient {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent-gradient);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.3;
  top: -100px;
  right: -100px;
  z-index: 1;
}

/* Services Grid */
.services-grid {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.services-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--dark-surface);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card-inner {
  padding: 30px;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.auction-icon {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNTAgMTBIMTBWNTBINTBWMTBaIiBzdHJva2U9IiM0Rjc1RkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTIwIDMwTDMwIDQwTDQwIDIwIiBzdHJva2U9IiM0Rjc1RkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+');
}

.crm-icon {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMzAgMTBDMjMuMzcgMTAgMTggMTUuMzcgMTggMjJDMTggMjguNjMgMjMuMzcgMzQgMzAgMzRDMzYuNjMgMzQgNDIgMjguNjMgNDIgMjJDNDIgMTUuMzcgMzYuNjMgMTAgMzAgMTBaIiBzdHJva2U9IiM0Rjc1RkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTE0LjQgNTBDMTQuNCA0Mi4yNyAyMS4yNyAzNiAyOSAzNkgzMUMzOC43MyAzNiA0NS42IDQyLjI3IDQ1LjYgNTAiIHN0cm9rZT0iIzRGNzVGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=');
}

.data-icon {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAgMTBINTBWNTBIMTBWMTBaIiBzdHJva2U9IiM0Rjc1RkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTIwIDQwVjMwIiBzdHJva2U9IiM0Rjc1RkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTMwIDQwVjIwIiBzdHJva2U9IiM0Rjc1RkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTQwIDQwVjI1IiBzdHJva2U9IiM0Rjc1RkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+');
}

.closing-icon {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNDAgMTBIMjBDMTguOSAxMCAxOCAxMC45IDE4IDEyVjQ4QzE4IDQ5LjEgMTguOSA1MCAyMCA1MEg0MEM0MS4xIDUwIDQyIDQ5LjEgNDIgNDhWMTJDNDIgMTAuOSA0MS4xIDEwIDQwIDEwWiIgc3Ryb2tlPSIjNEY3NUZGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjxwYXRoIGQ9Ik0yNSAyMEgzNSIgc3Ryb2tlPSIjNEY3NUZGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjxwYXRoIGQ9Ik0yNSAzMEgzNSIgc3Ryb2tlPSIjNEY3NUZGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjxwYXRoIGQ9Ik0yNSA0MEgzMCIgc3Ryb2tlPSIjNEY3NUZGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==');
}

.service-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.service-card-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAgM0w0LjUgOC41TDIgNiIgc3Ryb2tlPSIjNEY3NUZGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-position: center;
}

/* Process Section */
.services-process {
  padding: 100px 0;
  background-color: var(--dark-surface);
  position: relative;
  overflow: hidden;
}

.services-process:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent-gradient);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
  top: -200px;
  left: -200px;
}

.services-process-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-process-line {
  display: inline-block;
  width: 35px;
  height: 2px;
  background: var(--accent-blue);
  margin-bottom: 15px;
}

.services-process-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  color: var(--accent-blue);
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.services-process-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  color: var(--text-primary);
}

.services-process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 0 15px;
}

.process-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.process-step-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.process-step-arrow {
  width: 30px;
  height: 30px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNSAxNUgyNSIgc3Ryb2tlPSIjNEY3NUZGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjxwYXRoIGQ9Ik0xOCAxMEwyNSAxNUwxOCAyMCIgc3Ryb2tlPSIjNEY3NUZGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 25px;
  align-self: center;
}

/* Testimonial Section */
.services-testimonial {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background-color: var(--dark-surface-lighter);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.testimonial-content:before {
  content: "\201C";
  position: absolute;
  top: -30px;
  left: 30px;
  font-size: 120px;
  font-family: 'DM Serif Display', serif;
  color: var(--accent-blue);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-quote {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  color: var(--accent-blue);
}

/* CTA Section */
.services-cta {
  padding: 100px 0;
  background-color: var(--dark-surface);
  position: relative;
  overflow: hidden;
}

.services-cta-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--accent-gradient);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
  bottom: -300px;
  right: -200px;
}

.services-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.services-cta-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.services-cta-button {
  display: inline-block;
  padding: 18px 42px;
  background: var(--accent-gradient);
  border-radius: 90px;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive styles */
@media (max-width: 768px) {
  .services-hero-title {
    font-size: 36px;
  }
  
  .services-grid-wrapper {
    grid-template-columns: 1fr;
  }
  
  .services-process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step {
    margin-bottom: 30px;
    width: 100%;
  }
  
  .process-step-arrow {
    transform: rotate(90deg);
    margin: 0 0 30px 0;
  }
  
  .testimonial-quote {
    font-size: 18px;
  }
  
  .services-cta-title {
    font-size: 28px;
  }
}

/* Container styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* General styling */
body {
  background-color: var(--dark-bg);
  color: var(--text-primary);
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}
