:root {
  --navy: #082b4f;
  --navy-soft: #103d66;
  --emerald: #0d9f8c;
  --emerald-light: #2bc8b5;
  --mint: #eafbf9;
  --bg: #f7fafc;
  --white: #ffffff;
  --text: #344054;
  --muted: #667085;
  --border: #e6edf3;
  --shadow: 0 24px 70px rgba(8, 43, 79, 0.09);
  --shadow-soft: 0 14px 40px rgba(8, 43, 79, 0.06);
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 85% 5%, rgba(13, 159, 140, 0.12), transparent 28%),
    radial-gradient(circle at 8% 20%, rgba(43, 200, 181, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav {
  min-height: 86px;
  padding: 14px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(230, 237, 243, 0.9);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(8, 43, 79, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: fit-content;
}

.brand-logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text span {
  font-size: 14px;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.02em;
}

.brand-text strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  transition: 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--emerald);
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--emerald);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  padding: 13px 20px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(8, 43, 79, 0.18);
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav-phone span {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.72;
}

.nav-phone strong {
  font-size: 15px;
  font-weight: 800;
}

.nav-phone:hover {
  transform: translateY(-2px);
  background: var(--emerald);
}

.menu-toggle {
  display: none;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(8, 43, 79, 0.18);
}

.btn-primary:hover {
  background: var(--emerald);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 159, 140, 0.3);
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 170px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 76px;
}

.section-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--emerald);
  font-size: 14px;
  font-weight: 800;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  color: var(--navy);
}

.hero p {
  max-width: 600px;
  margin-bottom: 34px;
  font-size: 20px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-features span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(8, 43, 79, 0.05);
}

.hero-visual {
  position: relative;
  padding: 14px;
  border-radius: 36px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -45px;
  top: -45px;
  border-radius: 50%;
  background: rgba(13, 159, 140, 0.12);
  z-index: -1;
}

.hero-visual img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 26px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(230, 237, 243, 0.9);
  box-shadow: 0 24px 55px rgba(8, 43, 79, 0.13);
}

.opening-card {
  left: -34px;
  bottom: 50px;
  padding: 17px 20px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.location-card {
  right: -24px;
  top: 46px;
  padding: 17px 20px;
  border-radius: 22px;
}

.status-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.16);
}

.floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* SECTIONS */

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.hours-intro h2,
.contact-content h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.section-heading p,
.about-content p,
.hours-intro p,
.contact-content p {
  color: var(--muted);
  font-size: 18px;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 16px 45px rgba(8, 43, 79, 0.055);
  transition: 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.icon {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--mint);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 26px;
  height: 26px;
}

.icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 21px;
  letter-spacing: -0.035em;
}

.service-card p {
  color: var(--muted);
  font-size: 15.5px;
}

/* ABOUT */

.about {
  background: linear-gradient(180deg, transparent, rgba(234, 251, 249, 0.55));
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
}

.about-image {
  padding: 12px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
}

.about-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.about-list div {
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(8, 43, 79, 0.05);
}

.about-list strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 3px;
}

.about-list span {
  color: var(--muted);
  font-size: 14.5px;
}

/* STATS */

.stats {
  padding: 40px 0 90px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.stats-grid div {
  padding: 34px 26px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stats-grid div:last-child {
  border-right: none;
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stats-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

/* HOURS */

.hours-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  padding: 50px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 92% 10%, rgba(43, 200, 181, 0.22), transparent 32%),
    linear-gradient(135deg, var(--navy), #0a3557);
  color: var(--white);
  box-shadow: var(--shadow);
}

.hours-card .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: #9ff4ea;
}

.hours-intro h2,
.hours-intro p {
  color: var(--white);
}

.hours-intro p {
  opacity: 0.78;
}

.hours-list {
  display: grid;
  gap: 14px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hours-list span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hours-list strong {
  text-align: right;
  color: var(--white);
}

/* FAQ */

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(8, 43, 79, 0.045);
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 14px;
  color: var(--muted);
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 72px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-details a,
.contact-details div {
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(8, 43, 79, 0.05);
}

.contact-details strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-details span {
  color: var(--muted);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 17px;
  border-radius: 17px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: 0.2s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: rgba(13, 159, 140, 0.6);
  box-shadow: 0 0 0 4px rgba(13, 159, 140, 0.1);
}

/* FOOTER */

.footer {
  padding: 64px 0 28px;
  background: var(--navy);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.9fr;
  gap: 40px;
  padding-bottom: 34px;
}

.footer-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer p {
  font-weight: 800;
  font-size: 20px;
}

.footer strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 600;
}
.site-header.scrolled .nav {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 45px rgba(8, 43, 79, 0.12);
}
/* MAP */

.map-section {
  padding: 20px 0 100px;
}

.map-card {
  overflow: hidden;
  height: 430px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.status-dot.is-closed {
  background: #f97316;
  box-shadow: 0 0 0 7px rgba(249, 115, 22, 0.16);
}

.opening-card.is-closed strong {
  color: #9a3412;
}
/* LEGAL PAGES */

.legal-page {
  padding-top: 150px;
}

.legal-hero {
  padding: 80px 0 50px;
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.07em;
  color: var(--navy);
}

.legal-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.legal-content {
  padding: 30px 0 100px;
}

.legal-content .container {
  max-width: 900px;
}

.legal-card {
  margin-bottom: 18px;
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 34px rgba(8, 43, 79, 0.05);
}

.legal-card h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.legal-card p {
  margin-bottom: 14px;
  color: var(--text);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--emerald);
  font-weight: 800;
}

.legal-card ul {
  margin: 12px 0 18px 22px;
  color: var(--text);
}

.legal-card li {
  margin-bottom: 8px;
}

.legal-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--emerald) !important;
  font-weight: 800;
}

.back-link {
  display: inline-flex;
  margin-top: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(8, 43, 79, 0.16);
  transition: 0.25s ease;
}

.back-link:hover {
  transform: translateY(-3px);
  background: var(--emerald);
}
/* FOOTER FIX */

.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* ===================================================
   NEW FOOTER
=================================================== */

.site-footer {
  padding: 52px 0 24px;
  background: var(--navy);
  color: white;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.2fr 0.8fr 1fr;
  gap: 56px;
  align-items: flex-start;
  padding-bottom: 34px;
}

.site-footer-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 18px;
}

.site-footer-brand h3 {
  margin-bottom: 12px;
  color: white;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.site-footer-brand p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}

.site-footer-column h4 {
  margin-bottom: 18px;
  color: white;
  font-size: 16px;
  font-weight: 800;
}

.site-footer-column a,
.site-footer-column span {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
  transition: 0.25s ease;
}

.site-footer-column a:hover {
  color: var(--emerald-light);
  transform: translateX(3px);
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 650;
}

/* Footer responsive */

@media (max-width: 1000px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 54px 0 26px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer-bottom {
    flex-direction: column;
  }
}
/* REVIEWS */

.reviews {
  background:
    radial-gradient(circle at 12% 20%, rgba(13, 159, 140, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(234, 251, 249, 0.45));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 16px 45px rgba(8, 43, 79, 0.055);
  transition: 0.28s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.review-stars {
  margin-bottom: 18px;
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.review-card p {
  margin-bottom: 24px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

.review-author {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.review-author strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 4px;
}

.review-author span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.reviews-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.reviews-note p {
  color: var(--muted);
  font-weight: 700;
}
/* THANK YOU PAGE + FORM NOTE */

.hidden-field {
  display: none;
}

.form-note {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.thanks-page {
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 10%, rgba(13, 159, 140, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.thanks-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px;
  border-radius: 36px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 26px;
}

.thanks-card h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.thanks-card p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.thanks-note {
  margin-top: 28px !important;
  font-size: 14px !important;
  color: var(--muted) !important;
}

@media (max-width: 620px) {
  .thanks-page {
    padding: 40px 0;
  }

  .thanks-card {
    padding: 34px 24px;
    border-radius: 28px;
  }

  .thanks-actions {
    flex-direction: column;
  }
}
/* PRODUCTS EMBED */

.products-embed-section {
  padding: 0;
  background: transparent;
}

.products-iframe {
  width: 100%;
  border: 0;
  display: block;
  overflow: hidden;
}
.btn-doctolib {
  background: #107aca;
  color: white;
  box-shadow: 0 18px 40px rgba(16, 122, 202, 0.22);
}

.btn-doctolib:hover {
  background: #0b68ad;
  transform: translateY(-3px);
}.nav-appointment {
  padding: 14px 18px;
  border-radius: 18px;
  background: #107aca;
  color: white;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(16, 122, 202, 0.18);
  transition: 0.25s ease;
}

.nav-appointment:hover {
  background: #0b68ad;
  transform: translateY(-2px);
}
.nav-links a[href="#pharmacie"] {
  white-space: nowrap;
}