:root {
  --main: #1500fa;
  --accent: #ff8266;
  --light: #fcfcfa;
  --dark: #152211;
  --shadow: 0 4px 22px #19361418;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--light);
  color: var(--dark);
}
header {
  background: var(--main);
  color: #fff;
  padding: .8em 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 2vw;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.7em;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}
nav {
  display: flex;
  gap: 1.2em;
}
nav a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: .6em 1.15em;
  border-radius: 22px;
  transition: background .17s, color .15s;
  font-size: 1.07em;
}
nav a:hover, nav a.active {
  background: var(--accent);
  color: var(--main);
}
.phone a {
  background: var(--accent);
  color: var(--main);
  font-weight: bold;
  font-size: 1.14em;
  border-radius: 11px;
  padding: .38em 1.1em;
  text-decoration: none;
  margin-left: 1.1em;
  letter-spacing: 1.1px;
  box-shadow: 0 2px 4px #2222;
  transition: background .18s, color .15s;
}
.phone a:hover { background: #fff1d3; color: #183920;}
@media (max-width: 870px) {
  .container {flex-direction: column; align-items: flex-start; gap: .6em;}
  .phone {margin-top: .5em;}
}

.hero {
  background: linear-gradient(120deg, #f7ffe7 64%, #d8f7f0 115%);
  padding: 3.6em 2em 3em 2em;
  border-radius: 0 0 2em 2em;
  box-shadow: 0 2px 18px #132e1a14;
  max-width: 1150px;
  margin: 1.3em auto 2.7em auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.2em;
}
.hero-content { flex: 2; }
.hero h1 {
  font-size: 2.25em;
  margin: 0 0 0.4em 0;
  font-weight: 700;
  color: var(--main);
  letter-spacing: 1.1px;
}
.hero p {
  font-size: 1.13em;
  margin: 0 0 1.1em 0;
  line-height: 1.4;
}
.hero .btn {
  display: inline-block;
  background: var(--main);
  color: #fff;
  padding: .93em 2.1em;
  border-radius: 24px;
  font-size: 1.08em;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
  margin-top: 1.1em;
  transition: background .17s;
}
.hero .btn:hover { background: var(--accent); color: var(--dark);}
.hero-img {
  flex: 1;
  min-width: 220px;
  max-width: 330px;
  border-radius: 18px;
  box-shadow: 0 8px 28px #3765291b;
}
@media (max-width: 1000px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-img {margin-top: 1.2em;}
}

section {
  max-width: 1120px;
  margin: 2.2em auto;
  padding: 0 2vw;
}
h2 {
  color: var(--main);
  font-size: 2em;
  margin-bottom: 1em;
}
.services {
  display: flex;
  gap: 1.2em;
  flex-wrap: wrap;
  justify-content: space-around;
}
.service-card {
  background: #fff;
  flex: 1 0 220px;
  border-radius: 1.2em;
  box-shadow: 0 2px 14px #1c44201b;
  padding: 1.5em 1.1em 1.2em 1.1em;
  margin-bottom: 2em;
  min-width: 180px;
  text-align: center;
  border-top: 5px solid var(--main);
  transition: box-shadow .18s, transform .14s;
}
.service-card:hover {
  box-shadow: 0 6px 24px #233f2e28;
  transform: scale(1.04);
  border-top: 5px solid var(--accent);
}
.service-card h3 {
  color: var(--accent);
  font-size: 1.16em;
  margin-bottom: .6em;
}
.icn {
  font-size: 2.1em;
  display: block;
  margin-bottom: .7em;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.2em;
  margin-bottom: 2em;
}
.gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 4px 14px #233f2e18;
  transition: transform .25s, box-shadow .25s;
}
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px #1e654c21;
}

.zone {
  text-align:center;
  font-size: 1.14em;
  background: #f7faf7;
  border-radius: 11px;
  padding: .67em 0;
  box-shadow: 0 1px 8px #205a2e10;
  margin-bottom: 1.4em;
}

#contact-form {
  background: #fff;
  max-width: 430px;
  margin: 2em auto 1em auto;
  border-radius: 1em;
  box-shadow: 0 2px 17px #2d4c2c1b;
  padding: 1.2em 1.5em;
}
#contact-form label {
  font-weight: 600;
}
#contact-form input, #contact-form textarea {
  width: 100%;
  padding: .75em 1em;
  margin: .5em 0;
  border: 1.4px solid #a5b8d9;
  border-radius: 7px;
  font-size: 1em;
  background: #f8fafc;
  color: #1d2939;
  resize: vertical;
}
#contact-form button {
  background: var(--main);
  color: #fff;
  padding: .7em 2em;
  border-radius: 18px;
  border: none;
  font-size: 1.03em;
  font-weight: 600;
  margin-top: .6em;
  cursor: pointer;
  transition: background .16s;
}
#contact-form button:hover { background: var(--accent); color: var(--dark);}
#confirme {
  color: #00f7ff;
  text-align: center;
  font-weight: 600;
  margin-top: 1em;
}

footer {
  text-align: center;
  color: #8fa681;
  background: #152211;
  padding: 1.2em 0 .8em 0;
  font-size: .98em;
  margin-top: 2.6em;
}
@media (max-width: 600px) {
  .services, .gallery { grid-template-columns: 1fr; flex-direction: column;}
  .hero-img {max-width: 97vw;}
}
.contact-coordonnees {
  background: #fff;
  max-width: 400px;
  margin: 2em auto 1.5em auto;
  border-radius: 1.2em;
  box-shadow: 0 2px 17px #233f2e1a;
  padding: 2em 1.7em;
  font-size: 1.13em;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.contact-coordonnees div {
  display: flex;
  align-items: center;
  gap: .8em;
}

.contact-icn {
  font-size: 1.5em;
  color: var(--main);
}

.contact-label {
  font-weight: 700;
  min-width: 100px;
  color: var(--main);
}

.contact-link {
  color: var(--main);
  text-decoration: none;
  font-weight: 500;
  transition: color .16s;
  word-break: break-all;
}

.contact-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-info {
  color: var(--dark);
  font-weight: 500;
}
