
/* ελλύνν - Services Styles */
:root {
  --primary: #1f2937;
  --secondary: #134e4a;
  --accent: #f87171;
  --background: #ffffff;
  --text-color: #111827;
  --glass-opacity: 0.85;
}

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

body {
  font-family: 'Segoe UI',system-ui,sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background: linear-gradient(135deg, var(--background) 0%, #f5f5f5 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav {
  width: 100%;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1100px;
  width: 100%;
}

.service-card {
  background: rgba(255,255,255, var(--glass-opacity));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.description {
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.6;
}

.cta-button {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  background: linear-gradient(to right, var(--accent), var(--secondary));
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255,103,103,0.3);
}

.footer {
  margin-top: 4rem;
  text-align: center;
  color: rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

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

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