
/* fonts */

@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&display=swap');






* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {text-decoration: none; font-family: 'Prompt', sans-serif;
  color: #161616;}
body {
  font-family: 'Prompt', sans-serif;
  color: #161616;
  /* background-color: #e9ecf1; */
}
/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: auto;
  margin-top: 1rem;
  padding: .1rem .2rem;
  background: rgba(255, 255, 255, 0.728);
  border-radius: 10px;
  /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0.222), rgba(255, 255, 255, 0)); */
  position: fixed;
  width: 80%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 200;
}


.logo { height: 23px; padding-left: 20px;}
.menu-icon { font-size: 37px; cursor: pointer; padding-right: 10px;}

/* Section 1: Hero */
.section1 {
  position: relative;
  height: 65vh;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
  filter: contrast(130%) brightness(110%)saturate(90%);
}
/* 2) Frosted‑glass overlay to blur the video behind it */
.section1::before {
  content: "";
  position: absolute;
  inset: 0;                             /* cover the whole section */
  background: rgba(191, 191, 191, 0.2); /* light tint so you still see the video */
  backdrop-filter: blur(6px);          /* the actual blur effect */
  -webkit-backdrop-filter: blur(6px);  /* for Safari */
  z-index: 1;                           /* underneath your text */
}

.hero-overlay {
  position: relative;
  z-index: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
  padding-bottom: 4rem;
  color: #fff;
  z-index: 2;
}
.hero-overlay h1 {
  font-size: 3rem;
  line-height: 3.2rem;
  letter-spacing: 1.8px;
  /* margin-bottom: 1rem; */
  padding-bottom: 1rem;
}
.hero-overlay p  {
  font-size: 1.5rem;
  /* gradient text */
  background: linear-gradient(to top right, #ffffff, #ece9ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section 2: Pricing */
.section2 {
  margin: 2rem 0 4rem 0;
  text-align: center;
}
.procedure_price {
  font-size: 1rem;
  /* letter-spacing: 1px; */
  font-weight: 300;
  color: white;
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: 1rem;
  border-radius: 10px;
  background: linear-gradient(
  to right,
  #3e2346 0%,   /* start color at bottom-left */
  /* #814991 33%,    end color at top-right */
  #814991 66%,
  /* #3e2346 100% */
  #814991 100%
  );
  animation: pulse 4s infinite;
  margin: 1rem 0;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}
.contact-icons {
  margin: 2rem auto;
  gap: 1rem;
}

/* only on the index page, inside “Pricing Range + Contact Icons” */
.section2 .contact-icons {
  display: inline-flex;     /* lay icons out in a row */
  justify-content: center;  /* center them in the section */
  gap: 2rem;                /* ← your desired space between icons */
}


.contact-icons img {
  
  height: 2.5rem;
  margin: 0 1rem;
  padding: 5px 20px;
  background-color: #81499124;
  border-radius: 1.5rem;
  border: none;
  margin: 0;
}


/* Footer */
footer {
  font-size: 13px;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #ddd;
}












/* procedure/pricing */

.lumix_bg {
  position: relative;    /* so overlay sits on top */
  width: 100%;
  height: 400px;         /* or whatever fixed (px/rem/vh) height you need */
  overflow: hidden;      /* crop anything outside */
}

.lumix_bg img {
  display: block;        /* kill any inline gaps */
  width: 100%;           /* always fill full width */
  height: 100%;          /* match the section’s height */
  object-fit: cover;     /* scale + crop to cover */
  object-position: center; /* keep the crop centered */
}

/* inside your .section_procedure rules */

/* 1) Make that first step a flex‑row, left‑aligned */
.section_procedure ol li.with-icon {
  display: flex;
  align-items: center;      /* vertically center icons with the number */
  justify-content: flex-start;
  padding-left: 2.5rem;     /* lines up under where the “1” lives */
  margin-bottom: 3rem;      /* keep your bigger spacing */
}

/* 2) Position the icons just to the right of the number badge */
.section_procedure .contact-icons {
  display: flex;
  gap: 1rem;                /* space between phone + mail */
  margin: 0;
  margin-left: 1rem;        /* nudges the icons clear of the circle */
  margin-left: 0;
  padding: 0;
}


/* 3) Icon sizing & hover polish */
.section_procedure .contact-icons img {
  width: 1.5rem;
  width: 3.5rem;
  width: auto;
  height: auto;
  height: 1.5rem;
  display: block;
  transition: transform .2s;
  padding: .3rem .8rem;
  background-color: #ececec;
}

.phone-icon img {
  display: inline-block;                    /* allow transforms & bg to take effect */
  animation:
    pulse   3.5s infinite,                    /* your existing scale animation */
    bgPulse 3.5s infinite;                    /* the new BG‐color animation */
}
@keyframes bgPulse {
  0%, 100% {
    background-color: #f5f5f5;   /* your original light purple */
  }
  50% {
    background-color: #dbdbdb;    /* a stronger purple at mid‑pulse */
  }
}


.section_procedure .contact-icons a:hover img {
  transform: scale(1.1);
}



.section_procedure {
  position: relative;
  padding: 2rem 1rem;
  max-width: 600px;   /* or whatever */
  margin: 0 auto;
}

.section_procedure h2 {
  text-align: center;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* reset the default numbering & inset */
.section_procedure ol {
  counter-reset: step;
  list-style: none;
  position: relative;
  padding-left: 2.5rem;
  padding-left: 3rem;
  padding-top: 1rem;
  margin: 0;
}

/* the vertical line */
.section_procedure ol::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ccc;
  margin-top: 1rem;
}

/* each item */
.section_procedure li {
  position: relative;
  counter-increment: step;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
  padding-left: 2.7rem;
}

/* the circle with the step number */
.section_procedure li::before {
  content: counter(step);
  position: absolute;
  left: -0.4rem;
  top: 0;
  top: 50%;                         /* middle of the li’s height */
  left: 0;                          /* or whatever offset you prefer */
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  background: #814991;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* optional: tighten up the last item’s bottom margin */
.section_procedure li:last-child {
  margin-bottom: 0;
}




.section_pricing_animated {
  padding: 2.5rem 1rem;
  margin: 2rem 1rem;
  border-radius: 1rem;
  text-align: center;
  background: #f5f5f5;          /* light backdrop */

}

.section_pricing_animated h2 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.price-animation {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #814991;
}

.section_pricing_animated h2 span {
  font-size: 1.1rem;
}

.separator {
  font-size: 1rem;
  font-weight: 900;
  vertical-align: top;
}
