@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #042940;
  color: #ffffff;
  overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.home-hero {
  position: relative;
  min-height: 100vh;
  background-color: #042940;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: 0 6vw;
}

.home-hero__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.home-hero__logo {
  position: absolute;
  top: 28px;
  left: 6vw;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #DBF227;
  letter-spacing: 0.04em;
  z-index: 2;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 80px;
}

.home-hero__headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.home-hero__headline span {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 500;
  margin-top: 8px;
  color: #ffffff;
  opacity: 0.92;
}

.home-hero__subheading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 400;
  color: #00C5C3;
  margin-bottom: 36px;
  margin-top: 16px;
  max-width: 580px;
  line-height: 1.7;
}

.home-hero__cta-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.home-hero__btn-primary {
  display: inline-block;
  background-color: #DBF227;
  color: #042940;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(219, 242, 39, 0.3);
  letter-spacing: 0.02em;
}

.home-hero__btn-primary:hover {
  background-color: #9FC131;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(159, 193, 49, 0.45);
}

.home-hero__link-secondary {
  color: #00C5C3;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
  border-bottom: 1px solid transparent;
}

.home-hero__link-secondary:hover {
  color: #DBF227;
  border-bottom-color: #DBF227;
  letter-spacing: 0.04em;
}

/* ===== INTRODUCTION STRIP ===== */
.home-intro {
  background-color: #00C5C3;
  padding: 60px 6vw;
  text-align: center;
}

.home-intro__text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 500;
  color: #042940;
  max-width: 760px;
  margin: 0 auto 28px auto;
  line-height: 1.7;
}

.home-intro__divider {
  width: 120px;
  height: 3px;
  background-color: #DBF227;
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== SERVICES OVERVIEW ===== */
.home-services {
  background-color: #D6D58E;
  padding: 80px 6vw;
}

.home-services__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #042940;
  text-align: center;
  margin-bottom: 8px;
}

.home-services__subheading {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #042940;
  text-align: center;
  margin-bottom: 48px;
  opacity: 0.85;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.home-services__card {
  background-color: #042940;
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(4, 41, 64, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(4, 41, 64, 0.38);
}

.home-services__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin-bottom: 22px;
  object-fit: cover;
  border: 2px solid #00C5C3;
}

.home-services__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #DBF227;
  margin-bottom: 14px;
}

.home-services__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 28px;
  flex-grow: 1;
}

.home-services__card-btn {
  display: inline-block;
  background-color: #9FC131;
  color: #042940;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.home-services__card-btn:hover {
  background-color: #DBF227;
  transform: translateY(-2px);
}

/* ===== WHY CHOOSE LUMÉ ===== */
.home-why {
  background-color: #042940;
  padding: 80px 6vw;
}

.home-why__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #DBF227;
  text-align: center;
  margin-bottom: 52px;
}

.home-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto 52px auto;
}

.home-why__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border-radius: 16px;
  background-color: rgba(0, 197, 195, 0.07);
  border: 1px solid rgba(0, 197, 195, 0.18);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-why__block:hover {
  background-color: rgba(0, 197, 195, 0.13);
  transform: translateY(-4px);
}

.home-why__icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}

.home-why__block-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #00C5C3;
  margin-bottom: 12px;
}

.home-why__block-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
}

.home-why__divider {
  width: 200px;
  height: 3px;
  background-color: #9FC131;
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== ABOUT SOPHIE TEASER ===== */
.home-about {
  background-color: #D6D58E;
  padding: 80px 6vw;
}

.home-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.home-about__text-col {}

.home-about__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: #042940;
  margin-bottom: 20px;
}

.home-about__body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #042940;
  line-height: 1.8;
  margin-bottom: 32px;
}

.home-about__btn {
  display: inline-block;
  background-color: #042940;
  color: #DBF227;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.home-about__btn:hover {
  background-color: #00C5C3;
  color: #042940;
  transform: translateY(-2px);
}

.home-about__img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-about__img {
  width: 100%;
  max-width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #00C5C3;
  box-shadow: 0 12px 40px rgba(4, 41, 64, 0.2);
}

/* ===== CONSULTATION CTA BANNER ===== */
.home-cta-banner {
  background: linear-gradient(135deg, #9FC131 0%, #b8d933 100%);
  padding: 80px 6vw;
  text-align: center;
}

.home-cta-banner__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #042940;
  margin-bottom: 16px;
}

.home-cta-banner__subtext {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 400;
  color: #042940;
  max-width: 600px;
  margin: 0 auto 36px auto;
  line-height: 1.7;
}

.home-cta-banner__btn {
  display: inline-block;
  background-color: #DBF227;
  color: #042940;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 44px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(4, 41, 64, 0.25);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.home-cta-banner__btn:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(4, 41, 64, 0.3);
}

/* ===== CONTACT TEASER ===== */
.home-contact {
  background-color: #042940;
  padding: 80px 6vw;
  text-align: center;
}

.home-contact__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: #00C5C3;
  margin-bottom: 16px;
}

.home-contact__text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  max-width: 560px;
  margin: 0 auto 36px auto;
  line-height: 1.7;
}

.home-contact__info-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.home-contact__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: #DBF227;
  text-decoration: none;
  transition: color 0.3s ease;
}

.home-contact__info-item:hover {
  color: #ffffff;
}

.home-contact__info-icon {
  font-size: 1.2rem;
}

.home-contact__btn {
  display: inline-block;
  background-color: #00C5C3;
  color: #042940;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 34px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.home-contact__btn:hover {
  background-color: #DBF227;
  color: #042940;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .home-services__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .home-why__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 40px auto;
  }

  .home-about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-about__img-col {
    order: -1;
  }

  .home-about__img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .home-hero__logo {
    font-size: 1.05rem;
  }

  .home-hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .home-contact__info-row {
    flex-direction: column;
    gap: 18px;
  }

  .home-services__card {
    padding: 28px 22px;
  }

  .home-why__block {
    padding: 28px 18px;
  }
}

/* Scroll reveal animation prep */
.home-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home-reveal.home-revealed {
  opacity: 1;
  transform: translateY(0);
}


    /* Editable elements styling - HIGHEST PRIORITY */
    .editable:hover:not(.editor-tool):not([data-editor-tool]) {
      outline: 2px dashed #ff9800 !important;
      outline-offset: 2px !important;
      cursor: pointer !important;
      z-index: 999999 !important;
    }
    .selected-editable:not(.editor-tool):not([data-editor-tool]) {
      outline: 3px solid #ff9800 !important;
      outline-offset: 2px !important;
      box-shadow: 0 0 8px 2px #ff980033 !important;
      z-index: 999999 !important;
    }
    /* Prevent editor tools from having editor styles */
    .editor-tool,
    [data-editor-tool] {
      outline: none !important;
      cursor: default !important;
    }
    /* Drag and drop styles */
    .dragging {
      opacity: 0.5 !important;
    }
    .drag-over {
      border-top: 3px solid #4CAF50 !important;
    }