/* ==========================================================
   EUROING — SERVICES PAGE STYLES (isolated and safe)
   ========================================================== */

body.services-page {
  font-family: "Roboto", sans-serif;
  color: #222;
  background: #f4f4f4;
  margin: 0;
  padding: 0;
}

.services-page main {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* ===== HERO ===== */
.services-page .services-hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.services-page .services-hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-page .hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: center;
  padding: 20px;
}

.services-page .hero-overlay h2 {
  font-size: 48px;
  font-family: "Play", sans-serif;
  max-width: 800px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.services-page .hero-btn {
  background-color: #2097ac;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 30px;
  transition: background 0.3s ease;
  font-weight: 500;
}

.services-page .hero-btn:hover {
  background-color: #0b5d6d;
}

/* ===== SERVICES LIST ===== */
.services-page .services-section {
  padding: 60px 10%;
  background-color: #fff;
}

.services-page .services-title {
  font-family: "Play", sans-serif;
  font-size: 50px;
  margin-top: 40px;
  color: #333;
  text-align: center;
}

.services-page .service-card {
  display: flex;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  padding: 40px;
  align-items: flex-start;
  gap: 40px;
  border-left: 6px solid #2691a4;
  margin-top: 7%;
}

.services-page .service-number {
  background-color: #469bab;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  border-radius: 50px;
  padding: 20px 20px;
  align-self: flex-start;
}

.services-page .service-content h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #333;
}

.services-page .service-content p {
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

/* ===== CONSULTATION ===== */
.services-page .consult-section {
  background-color: #1ba6b4;
  color: white;
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  max-width: 950px;
  margin: 60px auto;
}

.services-page .consult-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.services-page .consult-container p {
  font-size: 16px;
  margin-bottom: 20px;
}

.services-page .consult-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.services-page .consult-form input {
  padding: 15px 20px;
  border: none;
  border-radius: 26px;
  width: 80%;
  max-width: 400px;
  outline: none;
}

.services-page .consult-form button {
  background-color: white;
  color: #1ba6b4;
  border: none;
  border-radius: 30px;
  padding: 15px 20px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s;
}

.services-page .consult-form button:hover {
  background-color: #e6e6e6;
}

/* ===== FOOTER ===== */
.services-page footer {
  background: transparent;
  margin-top: 60px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-page .hero-overlay h2 {
    font-size: 30px;
  }

  .services-page .service-card {
    flex-direction: column;
    text-align: left;
  }

  .services-page .consult-section {
    margin: 30px 15px;
  }

    
    
    /* --- FORM MESSAGES --- */
.services-page .consult-message {
  margin-top: 15px;
  font-weight: 500;
  text-align: center;
}

.services-page .consult-message.success {
  color: #0b5d6d;
}

.services-page .consult-message.error {
  color: #b20000;
}

    
    
    
    
    
}
