/* -------------------------------------------------------
   GLOBAL STYLES
------------------------------------------------------- */
* { 
  font-family: "Poppins", sans-serif; font-weight: 700; !important; 
  box-sizing: border-box; 
}

html, body { 
  height: 100%; 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale; 
  margin: 0; 
  padding: 0; 
  width: 100%;
  overflow-x: hidden !important;
}

body { 
  background: #064E3B; 
}


  html, body {
    overflow-x: hidden;
    overflow-y: auto;
  }

/* -------------------------------------------------------
   FIRST SECTION — SAY NO TO SURGERY TEXT (DESKTOP BASE)
   (Base values match your 1536×864 perfect view)
------------------------------------------------------- */
#hero .right-shift {
  transform: translate(-140px, 20px);  
}

#hero .absolute.right-0 {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

/* Desktop big base (1536px) */
#subTitle {
  font-size: 90px !important;
  letter-spacing: 6px !important;
  white-space: nowrap;
}

#mainTitle {
  font-size: 70px !important;
  letter-spacing: 6px !important;
  white-space: nowrap;
}

.flavour-card img {
  width: 200px !important;
  height: 200px !important;
}

.flavour-card p {
  font-size: 28px !important;
}

#leftImage {
  width: 400px !important;
  height: 400px !important;
}

/* WORD ANIMATIONS */
.word-animate span {
  opacity: 0;
  display: inline-block;
  transform: translateY(25px);
  animation: wordFadeIn 0.6s ease forwards;
}

@keyframes wordFadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.word-fade {
  opacity: 0;
  display: inline-block;
  transform: translateY(25px);
  animation: smoothWord 0.7s ease forwards;
}

@keyframes smoothWord {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* STRIP DELAY APPEAR */
.delayed-strip {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.delayed-strip.show {
  opacity: 1;
}

/* Right side center helpers */
#hero .right-center,
#hero .right-side {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

/* Title gradient & style (no size here, only color & effect) */
#name {
  color:  #e8690d;;
}
#subTitle,  #mobile_subTitle {
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  background: linear-gradient(
    100deg,
    #ffffff 0%,
    #ffffff 30%,
    #ffffff 50%,
    #ffffff 70%,
    #ffffff 100%
  );
  -webkit-background-clip: text; 
  background-clip: text; 
  color: transparent;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.15))
          drop-shadow(0 6px 24px rgba(212,178,140,.22));
}

#mobile_subTitle { 
  text-align: center; 
}

/* -------------------------------------------------------
   HERO — TEXT ANIMATIONS
------------------------------------------------------- */
@keyframes sayNoSignature {
  0% { transform: translateY(15px) scale(.96); opacity: 0; }
  35% { transform: translateY(0) scale(1.04); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.sayno-animate { 
  animation: sayNoSignature 1.6s cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes fullCurveMove {
  0% { transform: translate(-480px, -480px) scale(0.7); opacity: 0; }
  18% { transform: translate(0px, 0px) scale(1); opacity: 1; }
  88% { transform: translate(0px, 0px) scale(1); opacity: 1; }
  100% { transform: translate(-480px, 480px) scale(0.7); opacity: 0; }
}

.motion { 
  animation: fullCurveMove 7s ease-in-out forwards; 
}

@keyframes titleSlideIn { 
  0% { transform: translateX(30px); opacity: 0; } 
  100% { transform: translateX(0); opacity: 1; } 
}

@keyframes descFadeIn { 
  0% { opacity: 0; transform: translateY(10px); } 
  100% { opacity: 1; transform: translateY(0); } 
}

@keyframes cardScaleUp { 
  0% { transform: scale(.95); opacity: 0; } 
  100% { transform: scale(1); opacity: 1; } 
}

.title-animate { animation: titleSlideIn .8s ease-out .3s forwards; }
.desc-animate { animation: descFadeIn .8s ease-out .5s forwards; }
.card-animate { animation: cardScaleUp .5s ease-out forwards; }

/* -------------------------------------------------------
   COMMON UTILITIES
------------------------------------------------------- */
.single-line { 
  white-space: nowrap; 
  display: block; 
}

.smooth-transition { 
  transition: all .5s cubic-bezier(.4,0,.2,1); 
}

/* -------------------------------------------------------
   LEFT CURVED STRIP
------------------------------------------------------- */
:root {
  --track-thick: 120px;
  --track-color: #ffffff;
}

.side-strip {
  position: absolute;
  inset: 0;
  width: 50vw;
  height: 100vh;
  left: 0; 
  top: 0;
  pointer-events: none;
  z-index: 1;
}

.side-strip-inner {
  position: absolute;
  left: calc(var(--track-thick) / -2);
  top: calc(var(--track-thick) / -2);
  width: calc(100% + var(--track-thick));
  height: calc(100% + var(--track-thick));
  overflow: visible;
}

.side-strip svg { 
  width: 100%; 
  height: 100%; 
  display: block; 
  overflow: visible; 
}

/* Keep same curved shape — only draw animation */
.side-strip path {
  stroke: var(--track-color);
  stroke-width: var(--track-thick);
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;

  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2.8s ease;
}

.side-strip path.draw {
  stroke-dashoffset: 0;
}

/* -------------------------------------------------------
   CIRCULAR IMAGES (DESKTOP + MOBILE)
------------------------------------------------------- */
#leftImage, #mobileImage { 
  position: absolute; 
  z-index: 2; 
  border-radius: 50%;
  object-fit: cover;
}

#leftImage {
  width: 380px;
  height: 380px;
}

#mobileImage {
  width: 220px;
  height: 220px;
}

/* -------------------------------------------------------
   LAYOUT FIX — PREVENT SHIFTING
------------------------------------------------------- */
body.fixed-layout {
  overflow-x: hidden;
  width: 100vw;
  max-width: 100%;
  position: relative;
}

.section-container {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
}

/* -------------------------------------------------------
   MOBILE HERO FIXES
------------------------------------------------------- */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden !important;
    position: relative;
  }

  #hero .md\:hidden {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  .side-strip {
    width: 100vw !important;
    height: 50vh !important;
    left: 0;
    top: 15%;
    overflow: hidden;
  }

  .side-strip-inner {
    width: 140% !important;
    height: 140% !important;
    left: -20%;
    top: -20%;
  }

  #mobileImage {
    position: relative !important;
    margin: 0 auto;
    display: block;
    animation: fullCurveMove 7s ease-in-out forwards;
    z-index: 5;
  }

  #mobile_subTitle,
  #mobile_mainTitle,
  #mobile_description {
    text-align: center;
    width: 100%;
    padding: 0 20px;
  }

  #mobile_mainTitle {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  #mobile_description {
    font-size: 14px;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
  }
}

/* -------------------------------------------------------
   FEATURE SECTION
------------------------------------------------------- */
.feature-image-anim {
  opacity: 0;
  transform: translateX(200px);
  transition: all 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feature-image-anim.cards-slide-end,
.feature-image-anim.image-slide-end,
.feature-image-anim.active {
  opacity: 1;
  transform: translateX(0);
}

.feature-cards-anim {
  opacity: 0;
  transform: translateY(90px);
  transition: all 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feature-cards-anim.cards-slide-end,
.feature-cards-anim.active {
  opacity: 1;
  transform: translateY(0);
}

#feature-section {
  background: #ffffff;
  position: relative;
  z-index: 10;
  width: 100%;
  overflow: hidden;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.prevent-shift {
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* IMAGE ANIMATION (Right slide) */
.image-anim {
  opacity: 0;
  transform: translateX(200px);
  transition: all 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.image-anim.active {
  opacity: 1;
  transform: translateX(0);
}

/* CARDS ANIMATION */
.cards-anim {
  opacity: 0;
  transform: translateY(90px);
  transition: all 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cards-anim.active {
  opacity: 1;
  transform: translateY(0);
}

/* FORM LABEL */
.form-label, .contact-label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* -------------------------------------------------------
   STRIP FORM (APPOINTMENT)
------------------------------------------------------- */
.appointment-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  white-space: nowrap;
}

.strip-item {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  scroll-snap-align: center;
}

.strip-label {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 4px;
  font-weight: 600;
}

.strip-input {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.strip-input:focus {
  border-color: #ffffff;
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 2px rgba(212,178,140,0.3);
}

.strip-btn {
  padding: 14px 30px;
  background: linear-gradient(90deg,#ffffff,#ffffff);
  border-radius: 40px;
  color: black;
  font-weight: 600;
  transition: 0.3s ease;
  white-space: nowrap;
}

.strip-btn:hover {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .appointment-strip {
    flex-direction: column;
    gap: 18px;
    padding: 30px;
  }
  .strip-item {
    width: 100%;
    min-width: 100%;
  }
}

/* -------------------------------------------------------
   CONTACT / FORM ELEMENTS
------------------------------------------------------- */
.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 0.8s ease forwards;
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-input {
  width: 100%;
  border: 1px solid #ddd;
  padding: 14px 18px;
  border-radius: 16px;
  transition: .3s ease;
}
.contact-input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px #e8cfa880;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 32px 26px;
  text-align: center;
  border-radius: 30px;
  backdrop-filter: blur(14px);
  transition: 0.35s ease;
  cursor: default;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  border-color: #ffffff;
}

.contact-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.contact-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-text {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}

.scroll-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.scroll-anim.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO SECTION RESPONSIVE FIX — ALL DESKTOP SIZES
   (These are the important new rules)
============================================================ */

/* Default (1536px desktop) is defined above */

/* 1440px — Slight shrink to keep balance */
@media (max-width: 1480px) {

  #leftImage {
    width: 300px !important;
    height: 300px !important;
  }

  #subTitle {
    font-size: 70px !important;
  }

  #mainTitle {
    font-size: 50px !important;
  }

  #description {
    font-size: 20px !important;
    max-width: 460px;
  }

  .flavour-card img {
    width: 170px !important;
    height: 170px !important;
  }

  .flavour-card p {
    font-size: 24px !important;
  }

  #hero .right-shift {
    transform: translate(-40px, 10px);
  }

  .side-strip-inner {
    transform: scale(0.9);
    transform-origin: left center;
  }
}

/* 1366px laptop — smooth shrink (no merging) */
@media (max-width: 1440px) {

  #leftImage {
    width: 400px !important;
    height: 400px !important;
  }

  #subTitle {
    font-size: 60px !important;
    letter-spacing: 0px !important;
  }

  #mainTitle {
    font-size: 30px !important;
  }

  #description {
    font-size: 18px !important;
    max-width: 420px !important;
  }

  .flavour-card img {
    width: 900px !important;
    height: 100px !important;
  }

  .flavour-card p {
    font-size: 11px !important;
  }

  #hero .right-shift {
    transform: translate(0px, 5px);
  }

  .side-strip-inner {
    transform: scale(0.8);
    transform-origin: left center;
  }
}

@media (max-width: 1366px) {

  #leftImage {
    width: 400px !important;
    height: 400px !important;
  }

  #subTitle {
    font-size: 60px !important;
    letter-spacing: 0px !important;
  }

  #mainTitle {
    font-size: 30px !important;
  }

  #description {
    font-size: 18px !important;
    max-width: 420px !important;
  }

  .flavour-card img {
    width: 900px !important;
    height: 100px !important;
  }

  .flavour-card p {
    font-size: 11px !important;
  }

  #hero .right-shift {
    transform: translate(0px, 5px);
  }

  .side-strip-inner {
    transform: scale(0.8);
    transform-origin: left center;
  }
}

/* 1280px — smallest safe desktop */
@media (max-width: 1280px) {

  #leftImage {
    width: 220px !important;
    height: 220px !important;
  }

  #subTitle {
    font-size: 50px !important;
  }

  #mainTitle {
    font-size: 34px !important;
  }

  #description {
    font-size: 16px !important;
    max-width: 380px !important;
  }

  .flavour-card img {
    width: 130px !important;
    height: 130px !important;
  }

  .flavour-card p {
    font-size: 18px !important;
  }

  #hero .right-shift {
    transform: translate(0, 0);
  }

  .side-strip-inner {
    transform: scale(0.75);
    transform-origin: left center;
  }
}

/* Around 1200px and below — still desktop but tighter */
@media (max-width: 1200px) {

  #leftImage {
    width: 210px !important;
    height: 210px !important;
  }

  #subTitle {
    font-size: 40px !important;
  }

  #mainTitle {
    font-size: 30px !important;
  }

  #description {
    max-width: 340px !important;
  }

  .flavour-card img {
    width: 120px !important;
    height: 120px !important;
  }

  .flavour-card p {
    font-size: 16px !important;
  }
}



