body {
  margin: 0;
  background-color: #1e1e1e;
  color: #e0f7fa;
  font-family: sans-serif;
}

.navbar {
  background: #111;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li {
  position: relative;
}

.menu li a {
  color: cyan;
  text-decoration: none;
  padding: 8px;
  display: block;
}

.submenu {
  display: none;
  position: absolute;
  background: #222;
  list-style: none;
  padding: 0;
  top: 100%;
  left: 0;
  width: 150px;
}

.menu li:hover .submenu {
  display: block;
  animation: fadeIn 0.3s;
}

.burger {
  display: none;
  color: cyan;
  font-size: 24px;
  cursor: pointer;
}

.footer {
  background: #111;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media screen and (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 1rem;
    border-radius: 8px;
  }

  .menu.active {
    display: flex;
  }

  .burger {
    display: block;
  }
}
.hero {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.intro {
  text-align: center;
  margin-bottom: 3rem;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background: #2c2c2c;
  border-radius: 8px;
  padding: 1rem;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s;
}

.card img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem 1rem;
}
.card:hover {
  transform: scale(1.05);
}

.apropos {
  margin-top: 4rem;
}

.apropos ul {
  list-style: none;
  padding: 0;
}

.apropos li {
  margin: 0.5rem 0;
  color: #00bcd4;
}

.contact-cta {
  background: #0f0f0f;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
  border-radius: 12px;
}

.contact-cta .btn {
  background: #00bcd4;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.contact-cta .btn:hover {
  background: cyan;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: cyan;
}

.logo-image {
  height: 50px;
  margin-right: 10px;
  max-width: 100%;
  object-fit: contain;
}

@media screen and (max-width: 600px) {
  .logo {
    font-size: 1.2rem;
  }

  .logo-image {
    height: 35px;
    margin-right: 6px;
  }
}
.contact-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.contact-form {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  text-align: left;
  font-weight: bold;
  color: cyan;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form input[type="range"] {
  padding: 10px;
  border: 1px solid #444;
  background: #1e1e1e;
  color: #eee;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.link-btn {
  background: cyan;
  color: black;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: not-allowed;
  transition: background 0.3s;
  display: block;
  width: 10%;
  margin: auto;
}
.link-btn:hover {
  cursor: pointer;
  background: #00bcd4;
}
.contact-form button {
  background: cyan;
  color: black;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: not-allowed;
  transition: background 0.3s;
  
}

.contact-form button.active {
  cursor: pointer;
  background: #00bcd4;
}

.success {
  color: lightgreen;
}

.error {
  color: #ff7070;
}

.small-text {
  font-size: 0.9rem;
  color: #ccc;
}
.devis-page {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}

.site-types {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.site-type {
  background: #2c2c2c;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  flex: 1 1 150px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
  border: 2px solid transparent;
}

.site-type:hover {
  background: #333;
  transform: scale(1.03);
}

.site-type.active {
  border-color: cyan;
}

.site-type i {
  font-size: 2rem;
  color: cyan;
  margin-bottom: 0.5rem;
}

.options-group {
  margin-bottom: 2rem;
}

.options-group h4 {
  color: cyan;
  margin-bottom: 1rem;
}

.option-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.option-item input {
  margin-right: 10px;
}

.recap table {
  width: 100%;
  border-collapse: collapse;
  background: #1f1f1f;
  margin-top: 1rem;
}

.recap th, .recap td {
  padding: 10px;
  border: 1px solid #333;
  text-align: left;
}

.submit-btn {
  margin-top: 1.5rem;
  background: cyan;
  color: black;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #00bcd4;
}
.options-groups-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.options-group {
  background: #2a2a2a;
  flex: 1 1 calc(10% - 2rem);
  padding: 1rem;
  border-radius: 8px;
  min-width: 300px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
}

.options-group h4 {
  margin-bottom: 0.75rem;
  color: cyan;
  font-size: 1.2rem;
  border-bottom: 1px solid #444;
  padding-bottom: 0.5rem;
}

.option-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.option-item input[type="checkbox"] {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .options-group {
    flex: 1 1 100%;
  }
}
.client-info {
  background: #2a2a2a;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
}

.client-info label {
  display: block;
  margin-top: 1rem;
  color: cyan;
  font-weight: bold;
}

.client-info input,
.client-info textarea,
.client-info select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #1e1e1e;
  color: #eee;
  margin-top: 5px;
}
.seo-block {
  margin-top: 3rem;
  padding: 1rem;
  background: #2c2c2c;
  border-radius: 8px;
}

.seo-block h2 {
  color: cyan;
}

.seo-block ul {
  padding-left: 1.5rem;
}

.contact-call {
  text-align: center;
}
.fd-list {
  list-style: none;
  padding-left: 0;
}

.fd-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.8rem;
  color: #e0f7fa; /* texte clair sur fond sombre */
}

.fd-list i {
  position: absolute;
  left: 0;
  top: 3px;
  color: cyan;
}
.nos-realisations {
  padding: 60px 20px;
  background-color: #121212;
  text-align: center;
}

.nos-realisations h2 {
  color: #00bcd4;
  font-size: 2rem;
  margin-bottom: 30px;
}

.realisations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.realisation-card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
}

.realisation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

.realisation-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
