/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #0A0A0A;
  color: #F0F0F0;
  line-height: 1.6;
}

/* Logo */
.logo {
  height: 80px;
  filter: drop-shadow(0 0 12px #FF00AA);
}

/* Header & nav */
header {
  background: #0A0A0A;
  padding: 1.5rem 3rem;
  border-bottom: 2px solid #FF00AA;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
nav a {
  color: #F0F0F0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}
nav a:hover,
nav a:focus-visible {
  color: #FF00AA;
  outline: none;
}
nav a:focus-visible {
  outline: 2px solid #FF00AA;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Burger */
.burger {
  display: none;
  font-size: 2.2rem;
  color: #FF00AA;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.35);
}
.burger.active {
  transform: rotate(90deg);
  transition: transform 0.25s ease;
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(90deg, #FF0050 0%, #9900FF 100%);
  color: #fff;
}
.hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px #FF00AA;
}
.hero .subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-bottom: 1.5rem;
}
.hero .btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  background: #fff;
  color: #FF0050;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero .btn:hover,
.hero .btn:focus-visible {
  background: #FF00AA;
  color: #fff;
  box-shadow: 0 0 15px #FF00AA;
  transform: scale(1.05);
  outline: none;
}

/* Services */
#services {
  padding: 3rem 2rem;
}
#services h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #FF00AA;
  text-shadow: 0 0 8px #FF00AA;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #1A1A1A;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 170, 0.25);
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(255, 0, 170, 0.35);
}
.card h3 {
  margin-bottom: 0.8rem;
  color: #FF00AA;
  text-shadow: 0 0 6px #FF00AA;
  font-size: 1.2rem;
}
.card p {
  font-size: 0.98rem;
  color: #EAEAEA;
}

/* Testimonials */
#testimonials {
  padding: 3rem 2rem;
  background: #0F0F0F;
}

#testimonials h2 {
  text-align: center;
  font-size: 2rem;
  color: #FF00AA;
  text-shadow: 0 0 8px #FF00AA;
  margin-bottom: 2rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rating-summary {
  background: rgba(255, 0, 170, 0.08);
  border: 1px solid rgba(255, 0, 170, 0.3);
  border-radius: 10px;
  padding: 2rem;
  display: inline-block;
}

.big-rating {
  font-size: 3rem;
  font-weight: 700;
  color: #FF00AA;
  margin-bottom: 0.5rem;
}

.rating-summary .stars {
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.rating-summary p {
  color: #F0F0F0;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonial {
  background: #1A1A1A;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 170, 0.25);
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(255, 0, 170, 0.35);
}

.testimonial .stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial p {
  font-style: italic;
  color: #EDEDED;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.98rem;
}

.testimonial strong {
  display: block;
  color: #FF00AA;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.testimonial .source {
  font-size: 0.85rem;
  color: #9A9A9A;
  display: block;
}

.cta-avis {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 0, 170, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 170, 0.2);
}

.cta-avis p {
  margin-bottom: 1rem;
  color: #F0F0F0;
  font-weight: 600;
}

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  background: transparent;
  color: #FF00AA;
  border: 2px solid #FF00AA;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #FF00AA;
  color: #0A0A0A;
  box-shadow: 0 0 15px #FF00AA;
  transform: scale(1.05);
  outline: none;
}

/* À propos */
#apropos {
  padding: 3rem 2rem;
  background: #0F0F0F;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

#apropos h2 {
  font-size: 2rem;
  color: #FF00AA;
  text-shadow: 0 0 8px #FF00AA;
  margin-bottom: 1.5rem;
}

#apropos h3 {
  font-size: 1.3rem;
  color: #FF00AA;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

#apropos p {
  font-size: 1rem;
  color: #EDEDED;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.values-list,
.benefits-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.values-list li,
.benefits-list li {
  padding: 0.8rem 0;
  color: #EDEDED;
  border-bottom: 1px solid rgba(255, 0, 170, 0.15);
}

.values-list li:last-child,
.benefits-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  color: #FF00AA;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.skill-item {
  background: #1A1A1A;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 170, 0.25);
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(255, 0, 170, 0.35);
}

.skill-item strong {
  display: block;
  color: #FF00AA;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.skill-item p {
  font-size: 0.95rem;
  color: #BFBFBF;
  margin: 0;
}

/* Contact */
#contact {
  padding: 3rem 2rem;
  text-align: center;
}
#contact h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #FF00AA;
  text-shadow: 0 0 8px #FF00AA;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.contact-links .btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  background: #FF0050;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-links .btn:hover,
.contact-links .btn:focus-visible {
  background: #9900FF;
  box-shadow: 0 0 15px #FF00AA;
  transform: scale(1.05);
  outline: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem 2rem;
  background: #0A0A0A;
  color: #9A9A9A;
  font-size: 0.95rem;
}
footer a {
  color: #FF00AA;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .burger {
    display: inline-block;
  }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #0A0A0A;
  }
  nav ul.show {
    display: flex;
    position: absolute;
    top: 90px;
    right: 20px;
    min-width: 220px;
    padding: 1rem;
    border: 1px solid #FF00AA;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(255, 0, 170, 0.45);
    animation: fadeIn 0.25s ease-in-out;
    z-index: 1000;
  }
  nav ul.show a {
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(255, 0, 170, 0.35);
  }
  nav ul.show li:last-child a {
    border-bottom: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .big-rating {
    font-size: 2.2rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  #apropos {
    padding: 2rem 1rem;
  }

  #apropos h2 {
    font-size: 1.6rem;
  }
}

/* Contact Form */
#contact {
  padding: 3rem 2rem;
  background: #0F0F0F;
}

#contact h2 {
  text-align: center;
  font-size: 2rem;
  color: #FF00AA;
  text-shadow: 0 0 8px #FF00AA;
  margin-bottom: 1rem;
}

.contact-intro {
  text-align: center;
  color: #BFBFBF;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 2rem;
  background: #1A1A1A;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 170, 0.25);
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.18);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #FF00AA;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: #0A0A0A;
  border: 1px solid rgba(255, 0, 170, 0.3);
  border-radius: 6px;
  color: #F0F0F0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF00AA;
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, #FF0050 0%, #9900FF 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus-visible {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.5);
  outline: none;
}

.contact-form button[type="submit"]:active {
  transform: scale(0.98);
}

/* Success Message */
.success-message {
  max-width: 600px;
  margin: 0 auto 2rem;
  background: rgba(0, 255, 170, 0.1);
  border: 2px solid #00FFAA;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.success-message h3 {
  color: #00FFAA;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.success-message p {
  color: #EDEDED;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.success-message a {
  color: #FF00AA;
  text-decoration: none;
  font-weight: 600;
}

.success-message a:hover {
  text-decoration: underline;
}

/* Contact Links Alternative */
.contact-links-alt {
  text-align: center;
  margin-top: 2rem;
}

.contact-links-alt p {
  color: #BFBFBF;
  margin-bottom: 1rem;
}

.contact-links-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-links-alt .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #FF00AA;
  border: 2px solid #FF00AA;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-links-alt .btn-secondary:hover,
.contact-links-alt .btn-secondary:focus-visible {
  background: #FF00AA;
  color: #0A0A0A;
  box-shadow: 0 0 15px #FF00AA;
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    padding: 1.5rem;
  }

  #contact h2 {
    font-size: 1.6rem;
  }

  .contact-links-alt {
    flex-direction: column;
  }

  .contact-links-alt .btn-secondary {
    width: 100%;
  }
}

/* Success Page */
.success-page {
  min-height: 60vh;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #FF0050 0%, #9900FF 100%);
}

.success-container {
  max-width: 600px;
  background: #1A1A1A;
  padding: 3rem 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 170, 0.3);
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.3);
}

.success-container h1 {
  color: #00FFAA;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 8px #00FFAA;
}

.success-container p {
  color: #EDEDED;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1rem;
}

.success-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.success-links .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #FF0050;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.success-links .btn:hover {
  background: #9900FF;
  box-shadow: 0 0 15px #FF00AA;
  transform: scale(1.05);
}

.back-link {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 0, 170, 0.2);
}

.back-link a {
  color: #FF00AA;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-link a:hover {
  color: #00FFAA;
}

@media (max-width: 768px) {
  .success-page {
    min-height: 100vh;
    padding: 2rem 1rem;
  }

  .success-container {
    padding: 2rem 1.5rem;
  }

  .success-container h1 {
    font-size: 1.5rem;
  }

  .success-links {
    flex-direction: column;
  }

  .success-links .btn {
    width: 100%;
  }
}