html {
  scroll-padding-top: 74px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
}

P {
  font-family: "Montserrat", sans-serif;
  color: #080600;
}

.yk-nav {
  background: #1a0f0a;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  box-sizing: border-box;
  position: sticky;
  z-index: 99999;
  top: 0;
  border-bottom: 1px solid rgba(206, 182, 161, 0.3);
  box-shadow: 0 8px 30px rgba(59, 36, 24, 0.25);
  background: rgba(26, 15, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.yk-nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;

  background: #ceb6a1;

  box-shadow:
    0 0 8px rgba(206, 182, 161, 0.8),
    0 0 20px rgba(206, 182, 161, 0.5),
    0 0 40px rgba(206, 182, 161, 0.3);

  pointer-events: none;
}
.yk-logo {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  color: #ceb6a1;

  text-shadow:
    0 0 8px rgba(206, 182, 161, 0.4),
    0 0 20px rgba(206, 182, 161, 0.15);
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
}
.yk-logo:hover {
  color: #ffffff;
}
.yk-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.yk-links a {
  text-decoration: none;
  color: #c4a899;
  font-size: 13px;
  letter-spacing: 2.5px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.2s;
  opacity: 1;
  position: relative;
}
.yk-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: #ceb6a1;

  transition: width 0.3s ease;
}

.yk-links a:hover::after {
  width: 100%;
}
.yk-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.yk-icon {
  color: #8a6a58;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.yk-icon:hover {
  color: #ffffff;
}

/******************************HERO SECTION*********************************************/
.hero {
  height: 100vh;
  background-image: url("/images/hero1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding-bottom: 80px;
}

.hero h1 {
  letter-spacing: 4px;
  font-size: 6rem;
  font-weight: 100;
  letter-spacing: 9px;
}

.hero-highlight {
  color: #3b2418;
  font-weight: 200;
}

.heading1 {
  position: absolute;
  top: 35%;
  left: 9%;
}

.heading2 {
  letter-spacing: -10px;
  position: absolute;
  top: 35%;
  left: 64%;
}

.hero h2 {
  font-family: "Dancing Script", cursive;
  font-size: 2.8rem;
}

.sub-heading1 {
  font-size: 3rem;
  letter-spacing: 10px;
  position: absolute;
  top: 48%;
  left: 13%;
}

.sub-heading2 {
  font-size: 3.5rem;
  letter-spacing: 15px;
  position: absolute;
  top: 48%;
  left: 73%;
  color: #3b2418;
}

.welcome {
  position: absolute;
  top: 6px;
  text-align: center;
}

.welcome1 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 5px;
}

.welcome2 {
  color: #3b2418;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 3px;
}

.hero-btn {
  margin-left: 100px;
  padding: 15px 60px;
  border-radius: 50px;

  background: rgba(206, 182, 161, 0.35);
  border: 2px solid #ceb6a1;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  color: #3b2418;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;

  box-shadow:
    0 0 15px rgba(206, 182, 161, 0.5),
    0 0 30px rgba(206, 182, 161, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);

  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);

  background: rgba(255, 255, 255, 0.25);

  box-shadow:
    0 8px 25px rgba(168, 118, 90, 0.25),
    0 0 20px rgba(206, 182, 161, 0.2);
}
/******************************DIVIDER SECTION*********************************************/
.divider {
  background-color: #3b2418;
  color: #cfb7a3;
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 10px 0;
  text-align: center;
}

/******************************SERVICES SECTION*********************************************/

.services {
  height: 277vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

/* TOP HALF */
.services__top {
  flex: 0.5;
  display: flex;
}

.services__top::before {
  content: "";
  width: 65%;
  background: #e5ddd0;
}

.services__top::after {
  content: "";
  width: 35%;
  background: #ffffff;
}

/* DIVIDER (THIS is your horizontal strip) */
.services__divider {
  height: 150px;
  width: 100%;
  background: #ffffff;
  flex-shrink: 0;
}

/* BOTTOM HALF */
.services__bottom {
  flex: 1;
  display: flex;
}

.services__bottom::before {
  content: "";
  width: 45%;
  background: #ffffff;
}

.services__bottom::after {
  content: "";
  width: 55%;
  background: #f5f0ea;
}

.services h3 {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  font-weight: bold;
}

.services-h2 {
  position: absolute;
  top: 1%;
  left: 40%;
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 10px;
  opacity: 0.3;
}

.prices {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
}

#makeup-prices {
  width: 600px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  position: absolute;
  top: 6%;
  left: 10%;
}

#wig-prices {
  width: 550px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  position: absolute;
  top: 40%;
  left: 55%;
}

.wig-img {
  width: 600px;
  height: 400px;
  position: absolute;
  top: 40%;
  left: 10%;
}

.makeup-img {
  width: 500px;
  height: 590px;
  position: absolute;
  top: 7%;
  left: 58%;
}

.price {
  font-weight: 600;
}

.prices span {
  font-size: 1.3rem;
}

.prices h3 {
  text-align: center;
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 20px;
}

.prices {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.line {
  flex: 1;
  border-bottom: 1px solid #bbb;
  transform: translateY(2px);
}

#houseCallFee {
  margin-top: 20px;
}

.services-btn {
  display: block;
  margin: 20px auto;
  padding: 15px 50px;
  border: 2px solid rgba(206, 182, 161, 0.6);
  border-radius: 5px;
  letter-spacing: 5px;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  background-color: #080600;
  color: #cfb7a3;
  box-shadow:
    0 0 15px rgba(206, 182, 161, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.services-btn:hover {
  transform: translateY(-3px) scale(1.03);

  background: rgba(206, 182, 161, 0.25);

  box-shadow:
    0 0 20px rgba(206, 182, 161, 0.6),
    0 0 40px rgba(206, 182, 161, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.2);
}

/******************************CLASSES SECTION*********************************************/
.classes-main-container {
  background: #ffffff;
  position: absolute;
  left: 0%;
  top: 60%;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.classes {
  display: flex;
  gap: 60px;
  font-family: "Montserrat", sans-serif;
  width: 82%;
  margin-left: 150px;
}

.classes-h2 {
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 10px;
  opacity: 0.6;
  margin: 30px 0;
}

.class {
  position: relative;
  height: 300px;
  border: 3.5px solid #ceb6a1;
  flex: 1;
  height: auto;
  padding: 80px 10px;
  padding-bottom: 0px;
}

.class-title {
  position: absolute;
  left: 25%;
  padding: 0;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #ffffff;
}

#one-on-one-title {
  top: -28px;
  left: 22%;
  font-size: 2.5rem;
}

#group-title {
  top: -23px;
  left: 13%;
  font-size: 2rem;
}

.classes h4 {
  padding: 5px 0px;
  width: 230px;
  text-align: center;
  display: block;
  margin: 20px auto;
  font-size: 1.3rem;
  font-weight: 500;
  border: 2px solid black;
}

.class-sub {
  font-family: "Dancing Script", cursive;
  color: #ceb6a1;

  text-shadow:
    0 0 6px rgba(206, 182, 161, 0.6),
    0 0 12px rgba(206, 182, 161, 0.4),
    0 0 24px rgba(255, 255, 255, 0.8);
  letter-spacing: 15px;
  position: absolute;
}

#one-on-one-sub {
  font-size: 4rem;
  top: -3%;
  left: 30%;
}

#group-sub {
  font-size: 3.5rem;
  top: -1%;
  left: 20%;
}

.classes p {
  letter-spacing: 2px;
  text-align: center;
}

.class ul {
  padding: 0 70px;
  text-align: left;
}

.learn-list {
  list-style: none;
}

.learn-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

/* custom dot */
.learn-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(59, 36, 24, 0.5);

  width: 6px;
  height: 6px;
  background: #3b2418;
  border-radius: 50%;

  animation: bullet 1s infinite ease-in-out;
}

/* ticking/pulse effect */
@keyframes bullet {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.6);
    opacity: 0.5;
  }
}

.included-list {
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

/* tick icon */
.included-list li::before {
  content: "✔";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;

  font-size: 14px;
  line-height: 1;

  animation: bullet 1s infinite ease-in-out;
}

.classes-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  margin: 15px auto;
  padding: 10px 0px;
  border: 2px solid rgba(206, 182, 161, 0.6);
  width: 160px;
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  background-color: #080600;
  color: #ffffff;
  text-transform: uppercase;
  box-shadow:
    0 0 15px rgba(206, 182, 161, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.classes-btn:hover {
  transform: translateY(-3px) scale(1.03);

  background: rgba(206, 182, 161, 0.25);

  box-shadow:
    0 0 20px rgba(206, 182, 161, 0.6),
    0 0 40px rgba(206, 182, 161, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.2);

  color: #080600;
}

.class:first-child button {
  margin-top: 30px;
}

/******************************BANNER SECTION*********************************************/
.banner {
  height: 60vh;
  background-image: url("/images/banner.png");
  background-size: cover;
  background-position: center 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 60px;
  position: relative;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.banner h2 {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-align: center;
  color: #cfb7a3;
  position: relative;
  z-index: 2;
}

/******************************ABOUT US SECTION*********************************************/
.about {
  height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

/* TOP HALF */
.about__top {
  display: flex;
  flex: 0.9;
  height: 80%;
}

.about__top::before {
  content: "";
  width: 65%;
  background: #ceb7a3;
}

.about__top::after {
  content: "";
  width: 35%;
  background: #ffffff;
}

/* TOP HALF */
.about__bottom {
  height: 10%;
}

.about__bottom::before {
  content: "";
  width: 100%;
  background: #ffffff;
}

.about__bottom::after {
  content: "";
  width: 100%;
  background: #ffffff;
}

.about-img {
  height: 500px;
  width: 400px;
  position: absolute;
  top: 19%;
  left: 60%;
}

.about-content {
  position: absolute;
  top: 19%;
  left: 13%;
  width: 40%;
  text-align: left;
}

.about p {
  font-size: 1.1rem;
  letter-spacing: 1.1px;
  margin-top: 20px;
}

.about h2 {
  font-family: "Dancing Script", cursive;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 5px;
}

.about-btn {
  padding: 20px 25px;
  border: 3px solid rgba(206, 182, 161, 0.6);
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  background-color: #080600;
  color: #ffffff;
  text-transform: uppercase;
  position: absolute;
  top: 77%;
  left: 27%;
  box-shadow:
    0 0 15px rgba(206, 182, 161, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.about-btn:hover {
  transform: translateY(-3px) scale(1.03);

  background: rgba(206, 182, 161, 0.25);

  box-shadow:
    0 0 20px rgba(206, 182, 161, 0.6),
    0 0 40px rgba(206, 182, 161, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.2);

  color: black;
  border: 2px solid rgba(18, 9, 1, 0.934);
}

/******************************TESTIMONIALS SECTION*********************************************/
.testimonials {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.test-h2 {
  font-size: 3rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.testimonials .highlight {
  color: #3b2418;
  font-weight: 700;
}

.testimonials p {
  font-size: 1.3rem;
  letter-spacing: 3px;
  font-weight: 500;
}

.tests-container {
  width: 90%;
  display: flex;
  gap: 20px;
  color: #ceb7a3;
  margin-top: 90px;
}

.test {
  background-color: #3b2418;
  position: relative;
  padding: 0px 50px;
  padding-top: 100px;
}

.test-experience {
  font-family: "Montserrat", sans-serif;
  padding: 10px 0;
}

.test-name {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 600;
  padding-bottom: 10px;
}

.test-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: absolute;
  top: -20%;
  left: 30%;
}

/******************************** GALLERY ****************************************/
.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  background-color: #ceb7a3;
}

.gallery h2 {
  font-size: 3rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.gallery .highlight {
  color: #3b2418;
  font-weight: 700;
}

.gallery p {
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 500;
  width: 60%;
  text-align: center;
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 15px;
  width: 80%;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-btn {
  background: #080600;
  color: #ceb7a3;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  border: #3b2418 solid 2px;
  padding: 15px 20px;
  margin-top: 25px;
  cursor: pointer;
  border: 2px solid rgba(206, 182, 161, 0.6);
  box-shadow:
    0 0 15px rgba(206, 182, 161, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.gallery-btn:hover {
  transform: translateY(-3px) scale(1.03);

  background: rgba(206, 182, 161, 0.25);

  box-shadow:
    0 0 20px rgba(206, 182, 161, 0.6),
    0 0 40px rgba(206, 182, 161, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.2);

  color: #080600;
  border: 2px solid rgba(18, 9, 1, 0.934);
}

/******************************** FAQ section ****************************************/
.faq {
  background-color: #ceb7a3;
  padding: 20px 0;
}

.faq h2 {
  font-size: 3rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 30px;
  text-align: center;
}

.faq .highlight {
  color: #3b2418;
  font-weight: 700;
}

.faq-container {
  display: flex;
  gap: 50px;
  width: 80%;
  margin: 0 auto;
}

.faq-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 2.3px solid #3b2418;
  border-radius: 14px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: #3b2418;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #a65d3a;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: #333;
}

.faq-form-container {
  width: 50%;
  display: block;
  margin: 0 auto;
}

.text h3 {
  font-size: 2rem;
}

.text p {
  font-size: 1.1rem;
  color: black;
}

.faq-form {
  margin: 10px auto;
  border: 2.3px solid #3b2418;
  border-radius: 14px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-form input,
.faq-form textarea {
  padding: 9px;
  border: 2.3px solid #3b2418;
  border-radius: 14px;
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
}

.faq-form label {
  margin: 8px 0;
  opacity: 0.75;
  font-size: 1rem;
  align-self: flex-start;
  padding-left: 30px;
}

.faq-form textarea {
  min-height: 120px;
}

.faq-form button {
  background-color: #563523;
  color: #ceb7a3;
  padding: 12px;
  border: 2.3px solid #3b2418;
  cursor: pointer;
  transition: 0.3s;
  width: 90%;
  margin: 10px 0;
  border-radius: 14px;
  box-sizing: border-box;
  font-size: 1rem;
}

.faq-form button:hover {
  color: #3b2418;
  background-color: #ceb7a3;
  border: 2px solid #3b2418;
}

.faq-container {
  opacity: 0.75;
}

/******************************** CONTACT SECTION ****************************************/
.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0;
}

.contacts-main-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 80%;
}

.contacts h2 {
  font-size: 7rem;
  line-height: 0.8;
}

.hours-container h2 {
  display: inline-block;
  transform: scaleX(1.5);
}

.hours-1st {
  margin-left: 80px;
}

.hours-2nd {
  color: #3b2418;
  margin-left: 230px;
}

.contacts-container h2 {
  display: inline-block;
  transform: scaleX(1.5);
  line-height: 0.5;
}

.contacts-1st {
  margin-left: 60px;
}

.contacts-2nd {
  color: #3b2418;
  margin-left: 360px;
}

.hours-container {
  width: 50%;
}

.day-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 12px 0;
  border-bottom: 2px solid rgba(9, 5, 9, 0.2);
}

.day-container:last-child {
  border-bottom: none;
}

.day {
  text-align: left;
}

.hours {
  text-align: center;
}

.contacts-container {
  background: #f5f0ea;
  border-radius: 7px;
  width: 50%;
  padding: 20px 60px;
  font-size: 1.3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 2px solid rgba(9, 5, 9, 0.2);
}

.contact-item:last-child {
  border-bottom: none;
  padding: 0;
}

.map-container {
  width: 85%;
  margin-top: 20px;
  border-radius: 20px;
}

.today {
  border-left: 5px solid #3b2418;
  background: #f5f0ea;

  padding-left: 10px;
  border-radius: 6px;
  font-weight: 900;
  color: #3b2418;
  transform: scale(1.02);
  transition: 0.3s ease;
}

/******************************** FOOTER SECTION ****************************************/

footer {
  background-color: #341e12;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

footer strong {
  color: #bc866a;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.footer-icon svg {
  width: 40px;
  height: 40px;
}

.footer-logo img {
  height: 150px;
  width: 200px;
  padding: 0;
  margin: 0;
}

.footer-icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  padding: 5px;
}

.footer-contact p {
  margin: 10px 0;
  color: #ceb7a3;
}

.footer-links ul {
  list-style-type: none;
  margin-top: 10px;
}

.footer-links li {
  margin-bottom: 5px;
}

a:hover {
  color: #f5f0ea;
  transform: scale(1.1);
  transition: 0.3s;
}

a {
  text-decoration: none;
  color: #ceb7a3;
  opacity: 0.8;
}

.footer-credits {
  color: #f5f0ea;
  font-size: 1rem;
  margin-top: 10px;
}

footer hr {
  border: none;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 80%;
}

.lobster-two-bold-italic {
  font-family: "Lobster Two", sans-serif;
  font-weight: 700;
  font-style: italic;
}

/******************************** CALL-TO-ACTION SECTION ****************************************/

.cta button {
  background: #341e12;
  color: rgba(206, 182, 161, 0.6);
  text-shadow:
    0 0 20px rgba(206, 182, 161, 0.6),
    0 0 40px rgba(206, 182, 161, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  border: 3px solid rgba(206, 182, 161, 0.6);

  padding: 15px 30px;

  display: block;
  margin: 0px auto;
  cursor: pointer;
  box-shadow:
    0 0 15px rgba(206, 182, 161, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.cta button:hover {
  transform: translateY(-3px) scale(1.03);

  background: rgba(206, 182, 161, 0.25);

  box-shadow:
    0 0 20px rgba(206, 182, 161, 0.6),
    0 0 40px rgba(206, 182, 161, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta {
  height: 90vh;
  background-image: url("/images/book.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 85%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 60px;
  position: relative;
  overflow: hidden;
}

/******************************BOOKING SECTION*********************************************/
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999999;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 40px 20px;

  backdrop-filter: blur(10px); /* 👈 THIS is the glass effect */
  background: rgba(59, 36, 24, 0.25);
  -webkit-backdrop-filter: blur(10px);
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fefefe;
  border-radius: 16px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 440px;
  position: relative;
  animation: modalIn 0.25s ease;
  font-family: "Montserrat", sans-serif;
  overflow-y: auto;
  padding: 40px 20px;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 0 40px rgba(206, 182, 161, 0.15);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #8a6a58;
  line-height: 1;
}

.modal-close:hover {
  color: #3b2418;
}

.modal-title {
  font-family: "Dancing Script", cursive;
  font-size: 1.9rem;
  color: #3b2418;
  margin-bottom: 2px;
}

.modal-subtitle {
  font-size: 0.82rem;
  color: #9a8478;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.modal-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.modal-field label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #3b2418;
  margin-bottom: 5px;
}

.modal-field input,
.modal-field select,
.modal-field textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  padding: 10px 13px;
  border: 1.8px solid #d6ccc4;
  border-radius: 8px;
  background: #f5f0ea;
  outline: none;
  color: #3b2418;
  transition: border-color 0.2s;
}

.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  border-color: #3b2418;
}

.modal-field textarea {
  min-height: 75px;
  resize: vertical;
}

.modal-submit {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.modal-submit:hover {
  background: #1ebe5d;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
}

.service-options label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: #3b2418;
}

.service-options input {
  accent-color: #3b2418;
}
