@import url("https://fonts.googleapis.com/css2?family=roboto:wght@400;700&display=swap");

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}

body{
  background-color: #D2B48C;
}

html{
  scroll-behavior: smooth;
}

.larkita-txt{
 text-align: center;
  background-color: #D2B48C;
  font-family:"Cormorant Garamond", sans-serif;
  font-weight: 500;
  font-size: 50px;
}


.marquee-wrapp{
  overflow: hidden;
  white-space: nowrap;
  padding-left: 10%;
  padding-right: 10%;
  border-top: 0.5px solid #ccc;
background-color: white;
  text-align: center;
  margin: auto;
  width: 50%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  font-family: "jost",sans-serif;
 font-weight: 300;
}

.marquee-track{
  display: inline-block;
  animation: marquee 14s linear infinite;
  
  
  
}

.marquee-track:hover{
  animation-play-state: paused;
}

.marquee-text{
  font-size: 22px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.01rem;
  display: inline-block;
  
}



@keyframes marquee{
  from {transform: translateX(0%);}
  to {transform: translateX(-100%);}
}



/* Navbar main container */
  .nav-container-flex {
    position: sticky;
    top: 0;
     border-bottom: 1px solid #e8d9c8;
     background: #fdf8f3;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(59,42,26,.07);
    transition: box-shadow .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    padding: 0 5%;
  }

  nav.scrolled { box-shadow: 0 4px 28px rgba(59,42,26,.13); }

  /* Navigation links */
  
 
  .btn-book-now{
   margin-left: 100px;
    width: 150px;
    height: 40px;
    
  }


  .nav-links a {
    color: black;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 10px;
    font-family: "raleway", sans-serif;
    font-weight: 400;
     text-transform: uppercase;
     color: #3b2a1a;
     position: relative;
      transition: color .3s;
      letter-spacing: 2px; 
  }

  
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px; background: #c49a6c; transition: width .3s;
  }

  
  .nav-links a:hover, .nav-links a.active { color: #c49a6c; }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

  
  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
  }

  
  .hamburger span {
    display: block; height: 2px; 
    background: #3b2a1a;
    border-radius: 2px; transition: all .35s;
  }

  
  .hamburger span:nth-child(1) { width: 24px; }
  .hamburger span:nth-child(2) { width: 18px; }
  .hamburger span:nth-child(3) { width: 24px; }

  
  /* Animate to X */
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   

  
  /* ── OVERLAY ── */
  .overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.45); z-index: 1000;
    opacity: 0; transition: opacity .3s;
  }

  
  .overlay.show { display: block; }
  .overlay.visible { opacity: 1; }

   /* ── MOBILE DRAWER ── */
  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 70%; 
   /* background: #fdf8f3;*/
   background-color: #333;
     z-index: 1001;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(59,42,26,.18);
    display: flex; flex-direction: column;
  }

  .drawer.open { transform: translateX(0); }


  
  /* Drawer header */
  .drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px; border-bottom: 1px solid #e8d9c8;
    background-color: ;
  }

  
  .close-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: #f5ede0; border: 1px solid #e8d9c8;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #3b2a1a;
    transition: background .2s, transform .3s;
  }

  .close-btn:hover { background: #e8d0b8; transform: rotate(90deg); }

  /* Drawer links */
  .drawer-links { list-style: none; padding: 14px 0; flex: 1; overflow-y: auto; }
  .drawer-links li a {
    display: flex; align-items: center; gap: 13px;
    padding: 14px 26px; text-decoration: none;
    font-size: .8rem; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: white;
    border-left: 3px solid transparent;
    transition: color .2s, background .2s, border-color .2s;
    font-family: "raleway", sans-serif;
  }

  
  .drawer-links li a .d-icon { font-size: 1.05rem; }
  .drawer-links li a:hover { background: #f5ede0; color: #c49a6c; }
  .drawer-links li a.active {
    color: #c49a6c; border-left-color: #c49a6c;
    font-weight: 700; background: #fdf0e2;
  }

  
  /* Drawer footer */
  .drawer-footer { padding: 20px 22px; border-top: 1px solid #e8d9c8; }
  .drawer-footer .btn-book { width: 100%; padding: 13px; font-size: .72rem; margin-bottom: 14px; }
  .drawer-socials { display: flex; justify-content: center; gap: 12px; margin-bottom: 12px; }
  .drawer-socials a {
    width: 50px; height: 50px; border-radius: 50%;
    
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; text-decoration: none; color: white;
    transition: border-color .2s, transform .2s;
  }

  
  .drawer-socials a:hover { border-color: #c49a6c; transform: translateY(-5px); }
  .drawer-tagline { text-align: center; font-size: .6rem; color: white; letter-spacing: 1px; }

   /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right { display: none; }
    .hamburger { display: flex; }

  }


  

  .about-me-main-cont-flex{
   
    display: flex;
   align-content: center;
   align-items: center;
   gap: 50px;
    background-color:black;
    color: white;
    opacity: 0;
    animation: fadein 2s ease-in-out forwards;
    
    
    
  }

  @keyframes fadein{
    from{opacity: 0;}
    to{opacity: 1;}
  }

  .h2-about-me-txt{
    text-align: center;
    font-family: "playfair",sans-serif;
    font-weight: 500;
  }

  .abt-me-cont{
  
   color: white;
   width: 60%;
   margin: auto;
    text-align: center;
   
   
  }

  .p-about-me-txt{
    font-family: "raleway",sans-serif;
    font-weight: 500;
  }

  

  

  

  



 .estician-service-parent-flex{
     display: flex;
     justify-content: center;
     gap: 50px;
 }


 .our-service-txt-cont{
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
  font-family: "playfair" , sans-serif;
 }


 .all-our-service-link-cont,.our-service-link{
  text-align: center;
  color: black;
  font-family: "didot", serif;
  font-style: italic;
  font-size: 18px;
  
  
 }

 

 .lash-main-cont{
  width: 450px;
  text-align: center;
   background-color: snow;
  border: none;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

 }

 
.fade-box{
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  
}

.fade-box.visible{
  opacity: 1;
  transform: translateY(0);
}

 .lash-img{
  border-bottom-left-radius: 15px;
 }

 .lash-txt-cont{
  padding: 10px;
  
  
 }


 .h2-lash-txt,.h2-facial-txt,.h2-waxing-txt{
  font-family: "playfair" , sans-serif;
 }
 .p-eye-lash-txt,.p-facial-txt,.p-waxing-txt{
 font-family: "raleway", sans-serif;
 
 }

 .facial-main-container{
  width: 450px;
  text-align: center;
  background-color: snow;
  border: none;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
 }

 .facials-txt-cont{
  padding: 10px;
 }

 


 .waxing-main-cont{
  width: 450px;
  text-align: center;
  background-color: snow;
  border: none;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
 }

 .waxing-cont-txt{
  padding: 10px;
 
 }

 .book-us-link{
  text-decoration: none;
  background-color: #333;
  color: white;
  padding: 10px 20px;
  transition: background-color 0.3s;
  font-family: "lato", serif;
  font-weight:300;
  border: 1px solid black;
 
 
 }

 .book-us-link:hover{
  background-color: black;
  color: white;
 }

 .add-on-service-txt-flex-cont-main{
  display: flex;
  justify-content: space-around;
  align-items: center;
  
  
 
 }

 .fade-left{
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
 }

 .fade-left.visible{
  opacity: 1;
  transform: translateX(0);
 }

 .fade-right{
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
 }

 .fade-right.visible{
  opacity: 1;
  transform: translateX(0);
 }




 .p-add-on-service{
   font-family: "playfair" , sans-serif;
   font-size: 35px;
 }

 .add-on-service-view-all-link{
  text-decoration: none;
  font-family: "lato", serif;
  font-weight:300;
  border: 1px solid black;
   padding: 10px 20px;
   color: black;
   display: block;
   width: 150px;
   text-align: center;
 }

 .add-on-service-view-all-link:hover{
  background-color: #000;
  color: #D2B48C;

 }


 .body-images-cont-flex{
   display: flex;
   align-items: center;
   justify-content: center;
    background-color:  whitesmoke;

   

   
  
  
 }

 
 
 .carousel-image-cont-main{
   
   max-width: 85%;
  
  
  
  
 }
  
 
 .slider-wrapper {
  position: relative;
 
}


.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: #000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}


.slider-wrapper .slide-button:hover {
  background: #404040;
}

.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}


.slider-wrapper .slide-button#next-slide {
  right: -25px;
}


.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}


.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}


.slider-wrapper .image-list .image-item {
  
  width: 360px;
  height: 500px;
 
}


.carousel-image-cont-main .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  
}


.slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}


.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}


.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}


.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}


.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

.what-we-offer-service-cont-flex{
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
 
  width: 80%;
 margin: auto;
 
 
  

  
  
}

.h3-what-we-offer-txt{
  
 
  font-weight: 300;

}

.what-we-offer-txt{
  font-family: "jost",sans-serif;
  margin-left: 50px;
}

.p-what-we-offer-txt{
  font-size: clamp(2.2rem,3.5vw,3.5rem);
  font-family: "cormorant Garamond", sans-serif;
  line-height: 60px;
}

.p-what-we-offer-txt em{
  font-style: italic;
  color: #c4876a;
}

.h3-header-number{
  font-family: "cormorant Garamond", sans-serif;
  
}

.service-name{

  font-family: "cormorant Garamond", sans-serif;

}


 .books-journal-cont-flex{
  display: flex;
  margin: auto;
  width: 80%;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  color: black;
  margin-top: -20px;
  background-color:  beige; 
 
 
 }

 .intimacy-with-god-cont{
  width: 300px;
  text-align: center;
  border: 1px solid tan;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
 }

 .saved-by-grace-cont{
  width: 300px;
  text-align: center;
 border: 2px solid tan;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
 }

 .books-cont{
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  margin: auto;
  width: 300px;
  font-size: 50px;
  font-family: "playfair" , sans-serif;
  background-color: white;
  color: black;
 }

 .h5-intimacy-with-god-txt{
   font-family: "playfair" , sans-serif;
   font-weight: 300px;
   font-size: 30px;
 }

 .h5-saved-by-grace-txt{
   font-family: "playfair" , sans-serif;
   font-weight: 300px;
   font-size: 30px;
 }

 .p-intimacy-with-god-txt{
  padding: 10px;
  font-family: "raleway", sans-serif;
  font-weight: 300;
  font-size: 17px;
 }
 .p-saved-by-grace-txt{
  padding: 10px;
 font-family: "raleway", sans-serif;
  font-weight: 300;
  font-size: 17px;
 }



.purchase-link{
 text-decoration: none;
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-family: "lato", sans-serif;
 
  
}

.purchase-link:hover{
  background-color: tan;
}


.container-flex{
  width: 80%;
  justify-content: center;
  background-image: url("green-sky-img.jpeg");
   box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
   background-repeat: no-repeat;
   background-size: cover;
   align-items: center;
   margin: auto;
   text-align: center;
   height: 500px;
   padding: 50px;
   color: white;
   display: flex;

}

.h3-coaching-txt{
   
    
    font-family: 'Playfair Display', serif;
   
}

.p-coaching-txt{
  font-family: "raleway", sans-serif;
  font-weight: 300;
  line-height: 30px ;
  letter-spacing: 2px;
  color: white;
  
   
   text-align: center;
   
   
}

.horizontal-line{
    border-bottom: 3px solid white;
    width: 200px;
    margin: auto;
}

.view-btn{
  background-color: #D2B48C;
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
}

.about-us-cont-flex{
  display: flex;
  background-color: black;
  justify-content: center;
  scroll-margin-top: 80px;
  width: 80%;
  margin: auto;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  color: white;
}

.h3-kaylove-cos-txt{
  text-align: center;
  font-family: "playfair", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 50px;
}

.p-kaylove-txt{
 text-align: center;
 letter-spacing: 0.05rem;
}

.abt-us-txt-flex-dir-child{
 
  width: 600px;
 
  height: 550px;
  
}

.abt-us-txt-cont{
 margin-top: 5px;
 padding: 30px;
 font-family: "raleway", sans-serif;
 font-weight: 400px;

  
}



.footer-main-flex{
 display: flex;
 justify-content: center;
 width: 80%;
 align-items: center;
 background-color: #ccc;
 margin: auto;
 padding: 10px;
 box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
 
   
}

.contact-us-main-container{
  width: 600px;
  height: 550px;
  
}

.h3-contact-us-head{
  border-bottom: 1px solid black;
  font-family: "playfair" ,sans-serif;
  font-weight: 400;
  font-size: 50px;
}

.contact-us-main-container{
  text-align: center;
}

.contact-us-txt-heead-cont{
  width: 300px;
  margin: auto;
}

.fa-location-dot{
  font-size: 30px;
  color: #D2B48C;
}

.p-loc-txt{
   font-family: "raleway", serif;
   font-weight: 400;
}


.p-mail-to-txt{
   font-family: "raleway", serif;
   font-weight: 400;
   color: #000;
}

.mailto-link{
  text-decoration: none;
  cursor: pointer;
}

.p-phone-number{
  font-family: "raleway", serif;
   font-weight: 400;
   color: #000;
}


.contact-us-form-cont{
  width: 600px;
  height: 550px;
  font-family: "raleway" ,sans-serif;
  font-weight: 400;
 
  
  
}

.name-email-cont-flex{
  display: flex;
  gap: 5px;
}
.phone-address-cont-flex{
  display: flex;
  gap: 5px;
}

.location-addres-cont-span{
   margin-left: 20px;
}

.location-link,.phone-number-link,.mail-link,.send-mail-link{
  text-decoration: none;
  
}

.phone-number{
  margin-left: 20px;
}

.fa-phone{
  font-size: 30px;
  color: #D2B48C;
}

.mail-cont-span{
  margin-left: 20px;
}


.fa-envelope{
  font-size: 30px;
  color: #D2B48C;
}

.name-input{
  width: 250px;
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  outline: none; 
 background-color: #ccc;
  
}



.name-input:hover{
 border: 1px solid black;
}

.email-input{
  width: 250px;
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  outline: none; 
  background-color: #ccc;
    
  
}


.email-input:hover{
 border: 1px solid black;
}

.tel-input{
  width: 250px;
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  outline: none; 
  background-color: #ccc;
  
  
}

.tel-input:hover{
 border: 1px solid black;
}


.address-input{
  width: 250px;
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  outline: none; 
  background-color: #ccc;
    
}

.address-input:hover{
 border: 1px solid black;
}

.subject-input{
  width: 505px;
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  outline: none; 
  background-color: #ccc;
}


.subject-input:hover{
 border: 1px solid black;
}

textarea{
  width: 505px;
  outline: none;
  height: 110px;
  border: none;
  border-bottom: 1px solid black;
  background-color: #ccc;
  
}

textarea:hover{
 border: 1px solid black;
}

.button-cont{
   width: 200px;
  margin: auto;
}

.send-message-btn{
  padding: 10px;
  width: 200px;
  margin: auto;
  border-radius: 4px;
  background-color: #000;
  color: white;
  font-family: "raleway", sans-serif;
  font-weight: 400;
}



.input-wrapper{
  display: flex;
  align-items: center;
  
  /*border-radius: 12px;*/
  overflow: hidden;
  
}

.input-icon{
  display: flex;
  align-items: center;
  height: 30px;
}

.fa-paper-plane{
  /*border-left: 1.5px solid red;*/
  padding: 10px;
  font-size: 30px;
  color: white;
  background-color: #D2B48C;
  
  
}

.photos-cont-flex{
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.apple-img{
  border-radius: 30px;
  padding: 5px;
  border: 2px solid white;
  
}

.phtos-txt{
  margin-left: 5px;
  font-size: 25px;
}

.photo-txt-link{
  text-decoration: none;
  color: #D2B48C;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}

.hr-cont{
  width: 90%;
  border-top: 1px solid red;
  margin: auto;
}

.social-media-main-cont-flex{
  display: flex;
  justify-content: space-around;
  color: white;
  
  align-items: center;
  
}

.social-media-cont-icon{
  display: flex;
  gap: 10px;
 
  
}

.facebook-link-cont{
 text-align: center;
 background-color: white;
 height: 50px;
 width: 50px;
 border-radius: 50%;
 display: flex;
align-items: center;

 
 

 
}

.fa-facebook{
 width: 50px;
 font-size: 30px;
}


.youtube-link-cont{
 text-align: center;
 background-color: white;
 height: 50px;
 width: 50px;
 border-radius: 50%;
 display: flex;
align-items: center; 
}

.fa-youtube{
 width: 50px;
 font-size: 30px;
 color: #ff0000;
}


.instagram-link-cont{
 text-align: center;
 background-color:  white;
 height: 50px;
 width: 50px;
 border-radius: 50%;
 display: flex;
align-items: center; 
}

.fa-instagram{
 width: 50px;
 font-size: 30px;
 color: #e1306c;
 
 
}

.tiktok-link-cont{
 text-align: center;
 background-color:  white;
 height: 50px;
 width: 50px;
 border-radius: 50%;
 display: flex;
align-items: center; 
}

.fa-tiktok{
 width: 50px;
 font-size: 30px;
 color: black;
 
 
}



/* css form validation */



    .wrapper {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      max-width: 900px;
      width: 100%;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 2px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,0.6);
      animation: fadeUp 0.7s ease both;
      color: white;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Left panel */
    .panel-left {
      background: linear-gradient(160deg, #1a1610 0%, #0d0d0d 100%);
      padding: 56px 40px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      
    }
    .panel-left::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), transparent);
    }

    .brand {
      font-family: 'Playfair Display', serif;
      font-size: 13px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 40px;
    }

    .panel-left h1 {
      font-family: 'Playfair Display', serif;
      font-size: 38px;
      font-weight: 700;
      line-height: 1.2;
      color: var(--text);
      margin-bottom: 20px;
    }
    .panel-left h1 em {
      font-style: normal;
      color: var(--accent);
    }

    .panel-left p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      font-weight: 300;
    }

    .contact-info {
      margin-top: auto;
      padding-top: 48px;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
     
    }
    .contact-item .icon {
      width: 32px; height: 32px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      
    }
    .contact-item .icon svg { width: 14px; height: 14px; fill: var(--accent); }
    .contact-item span {
      font-size: 13px;
    
    }

    .divider {
      width: 40px;
      height: 1px;
      background: var(--accent);
      margin: 32px 0;
      opacity: 0.5;
    }

    /* Right panel — form */
    .panel-right {
      padding: 56px 48px;
      color: black;
    }

    .form-heading {
      font-size: 13px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 36px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .field {
      position: relative;
      margin-bottom: 24px;
    }

    .field label {
      display: block;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 300;
      padding: 12px 14px;
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s;
      -webkit-appearance: none;
    }
    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: var(--border-focus);
      box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
    }
    .field textarea {
      resize: none;
      height: 110px;
      line-height: 1.6;
    }
    .field select option { background: #1a1a1a; }

    /* Validation states */
    .field.error input,
    .field.error textarea {
      border-color: var(--error);
      box-shadow: 0 0 0 3px rgba(224,92,92,0.1);
    }
    .field.success input,
    .field.success textarea {
      border-color: var(--success);
    }

    .field-msg {
      font-size: 11px;
      margin-top: 6px;
      display: none;
      animation: slideIn 0.2s ease;
    }
    @keyframes slideIn {
      from { opacity: 0; transform: translateY(-4px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .field.error .field-msg.err-msg  { display: block; color: var(--error); }
    .field.success .field-msg.ok-msg { display: block; color: var(--success); }

    /* Floating indicator */
    .field-status {
      position: absolute;
      right: 14px;
      top: 38px;
      width: 16px; height: 16px;
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .field.error .field-status,
    .field.success .field-status { opacity: 1; }
    .field-status svg { width: 14px; height: 14px; }
    .field.error  .field-status svg { fill: var(--error); }
    .field.success .field-status svg { fill: var(--success); }

    /* Character counter */
    .char-count {
      font-size: 11px;
      color: var(--muted);
      text-align: right;
      margin-top: 4px;
    }

    /* Submit button */
    .btn-submit {
      width: 100%;
      padding: 15px 24px;
      background: var(--accent);
      border: none;
      border-radius: var(--radius);
      color: #0d0d0d;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
      margin-top: 8px;
    }
    .btn-submit:hover {
      background: #d4b47a;
      box-shadow: 0 8px 24px rgba(201,169,110,0.25);
      transform: translateY(-1px);
    }
    .btn-submit:active { transform: translateY(0); }
    .btn-submit:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    .btn-submit .btn-text { transition: opacity 0.2s; }
    .btn-submit .btn-loader {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity 0.2s;
    }
    .btn-submit.loading .btn-text  { opacity: 0; }
    .btn-submit.loading .btn-loader { opacity: 1; }
    .spinner {
      width: 18px; height: 18px;
      border: 2px solid rgba(0,0,0,0.2);
      border-top-color: #0d0d0d;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Success toast */
    .toast {
      display: none;
      background: rgba(92,184,138,0.1);
      border: 1px solid rgba(92,184,138,0.3);
      border-radius: var(--radius);
      padding: 16px 20px;
      margin-top: 20px;
      font-size: 13px;
      color: var(--success);
      line-height: 1.5;
      animation: fadeUp 0.4s ease;
    }
    .toast.visible { display: block; }
    .toast strong { display: block; margin-bottom: 4px; font-size: 14px; }

    @media (max-width: 700px) {
      .wrapper { grid-template-columns: 1fr; }
      .panel-left { padding: 40px 28px; border-right: none; border-bottom: 1px solid var(--border); }
      .panel-right { padding: 36px 28px; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
    }







    /*css media querry start from here */

  

  @media (max-width:768px) {
    .about-me-main-cont-flex{flex-direction: 
      column;
      background-color: #D2B48C;
      width: 100%;
      margin: 0;
      
      
    }
    .about-me-main-cont-flex img{
       width: 100%;
       
    }

    .abt-me-txt-cont{
     width: 100%;
      color: black;
      
    
     
    }

    .h2-about-me-txt{
      text-align: center;
      font-family: "playfair", sans-serif;
    }

    


    .p-about-me-txt{
     

      text-align: center;
      font-family: "raleway", sans-serif;
      font-weight: 400;
      
     
    
     
    }

    .estician-service-parent-flex{
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 10px;
      width: 100%;
      align-content: center;
      background-size: 100% 100%;
      margin: auto;
      padding: 20px;
     position: sticky;
    
  
      
    }

    .lash-main-cont,.facial-main-container,.waxing-main-cont{
     width: 100%;
    }
    
   .lash-txt-cont{
    width: 100%;
    margin: auto;
   }

   .waxing-cont-txt{
    width: 100%;
    margin: auto;
   }

   .facials-txt-cont{
    width: 100%;
    margin: auto;
   }

  .lash-img,.facials-img,.waxing-img{
    width: 100% ;
    height: auto;
   margin: auto;
  }

  .books-journal-cont-flex{
   width: 100%;
  flex-direction: column;
  gap: 30px;
  
   
  }

  .books-cont{
    order: -1;
    text-align: center;
    width: 100%;
  }

  .intimacy-with-god-img,.saved-by-grace-img{
    width: 100%;
  }


  .intimacy-with-god-cont,.saved-by-grace-cont{
    width: 100% ;
  }

  
  

  .container-flex{
   width: 100%;
   
  }

  .h3-coaching-txt{
    letter-spacing: 2px;
  }

  .about-us-cont-flex{
    flex-direction: column;
    width: 100%;
    height: auto;
    
    
  }

  .img-flex-direct-child-abt-us{
    order: -1;
    
  }

  .abt-us-txt-flex-dir-child{
    width: 100%;
    height: auto;
  }

  .led-facials-img{
    width: 100%;
    height: 400px;
  }


  .p-kaylove-txt{
    text-align: center;
  }

  .footer-main-flex{
    flex-direction: column;
    width: 100%;
  }

  .contact-us-form-cont{
    width: 100%;
    height: auto;
    padding: 10px;
    
  }

  .name-email-cont-flex,.phone-address-cont-flex{
    flex-direction: column;
  }

  .subject-input,#message-area{
    width: 250px;
  }


  .marquee-wrapp{
    width: 100%;
    padding-left: 20%;
  }

  .marquee-text{
    width: 100%;
  }
  

  .what-we-offer-service-cont-flex{
   width: 100%;
   display: grid;
   grid-template-columns: repeat(2,1fr);
   
  }

  
  
    
   body,html{
    overflow-x: hidden;
    box-sizing: border-box;
    
  }

    
  }

  


























