/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  --first-color: #c08a57;
  --second_color: #585858;
  --text-color: #060e1c;
  --body-color: #f9f9f9;
  --header-color: #f1f1f1;
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  direction: rtl;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--body-color);
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/*=============== HEADER ===============*/
.header {
  background-color: var(--header-color);
  width: 70%;
  height: 100px;
  margin: 0 auto;
  border-radius: 70px;
  transform: translateY(-10px);
  padding: 30px 50px 10px;
  position: relative;
}
.header .logo::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translate(-50%);
  background-color: var(--header-color);
  border-radius: 50%;
  width: 269px;
  height: 269px;
  z-index: -1;
}
.header .logo a {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
}
.header .nav-links {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.header .nav-links div {
  display: flex;
  gap: 45px;
}
.header .nav-links .nav-link a {
  font-size: 25px;
  font-weight: bold;
  color: var(--second_color);
  transition: 0.3s;
}
.header .nav-links .nav-link a:hover {
  color: var(--first-color);
}
/*=============== MAIN ===============*/
.main {
  text-align: center;
  overflow: hidden;
}
.main .mega-menu {
  margin-top: 45px;
}
.main .mega-menu h3 {
  font-size: 110px;
  font-weight: 900;
  text-align: center;
  margin: 0 auto;
  line-height: 1.3;
  color: var(--second_color);
}
.main .mega-menu h3 span {
  color: var(--first-color);
  font-size: 125px;
}
.main .mega-menu .images {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 30px;
  gap: 20px;
  position: relative;
}
.main .mega-menu .images img {
  width: 100%;
}
.main .mega-menu .images .button {
  display: flex;
  justify-content: center;
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #f5ba47;
  transition: all 0.3s ease-in-out 0s;
  box-shadow: rgb(215 221 113 / 70%) 0px 0px;
  animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running
    pulse;
  align-items: center;
  border: 0;
  margin: 45px auto;
  cursor: pointer;
  position: absolute;
  top: 10%;
  left: 35%;
  z-index: 1;
}
.main .mega-menu .images .button:is(:hover, :focus) {
  transform: scale(1.2);
}
@keyframes pulse {
  100% {
    box-shadow: 0 0 0 45px rgba(193, 244, 246, 0);
  }
}
.main .mega-menu .images .watch-now-box {
  position: absolute;
  top: 12%;
  left: 23%;
  z-index: 0;
}
.main .mega-menu .images .watch-now-box .watch-now {
  position: absolute;
  left: -5%;
  top: -35%;
  font-size: 20px;
  font-weight: bold;
  display: block;
  transform: rotate(-25deg);
  color: #f5ba47;
  line-height: 1.2;
}
.main .mega-menu .images .watch-now-box .arrow {
  width: 75%;
}
.main .mega-menu .images .warranty {
  position: absolute;
  width: 15%;
  bottom: -10%;
}
.main .mega-menu .images .pop-up {
  display: none;
}
.main .mega-menu .images .pop-up.show {
  display: block;
}
.main .mega-menu .images iframe {
  width: 765px;
  height: 415px;
  border-radius: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 99;
}
.main .mega-menu .images .overlay {
  position: fixed;
  background-color: rgb(0 0 0 / 30%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 98;
}
.main .mega-menu .images .overlay i {
  font-size: 40px;
  position: fixed;
  right: 30px;
  top: 30px;
  color: black;
  cursor: pointer;
}
.main .mega-menu p {
  font-weight: bold;
  font-size: 68px;
  color: var(--first-color);
}
.main .booking {
  margin: 60px auto;
}
.main .booking .booking-btn {
  color: var(--first-color);
  font-weight: 500;
  font-size: 32px;
  padding: 20px 45px;
  border: 2px solid var(--first-color);
  border-radius: 50px;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Tajawal', sans-serif;
  position: relative;
  overflow: hidden;
}
.main .booking .booking-btn:hover {
  background-color: var(--first-color);
  color: var(--body-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(192, 138, 87, 0.3);
}
.main .booking .booking-btn:active {
  transform: translateY(1px);
}
/* Add a subtle animation for the button */
.main .booking .booking-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.main .booking .booking-btn:hover::before {
  transform: translateX(100%);
}
/* Responsive styles for the booking button */
@media screen and (max-width: 767px) {
  .main .booking .booking-btn {
    font-size: 28px;
    padding: 15px 35px;
  }
}
@media screen and (max-width: 480px) {
  .main .booking .booking-btn {
    font-size: 24px;
    padding: 12px 30px;
  }
}
.main .questions-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 30px;
  text-align: center;
}
.main .questions-box .questions {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: var(--second_color);
}
.main .questions-box .questions li {
  margin-bottom: 50px;
  line-height: 1.4;
}
.main .questions-box .questions li span {
  font-size: 40px;
  font-weight: 800;
  color: var(--first-color);
  padding-left: 12px;
}
.main .services {
  padding: 0px 20px;
  margin-bottom: 70px;
}
.main .services > h3:first-of-type {
  color: #7d7d7d;
  font-size: 35px;
  padding: 40px 0;
}
.main .services h1 {
  font-weight: bold;
  font-size: 68px;
  color: var(--first-color);
}
.main .services > h3:last-of-type {
  font-weight: 400;
  font-size: 42px;
  color: var(--first-color);
}
.main .services .services-box {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  row-gap: 30px;
}
.main .services .services-box .service {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.main .services .services-box .service .image {
  background-color: #f09535;
  height: 180px;
  width: 180px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .services .services-box .service .image img {
  transition: 0.3s;
}
.main .services .services-box .service .image:hover img {
  transform: scale(1.1);
}
.main .services .services-box .service p {
  color: var(--text-color);
  font-size: 22px;
  font-weight: 500;
}
.main .services .free-box {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--first-color);
}
.main .services .free-box h3 {
  color: var(--first-color);
  margin: 1.5rem 0;
  font-size: 32px;
  font-weight: 700;
}
.main .services .free-box .cat-button {
  margin-top: 1rem;
  text-align: center;
}
.main .services .free-box .cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, var(--first-color), #e6a76c);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(192, 138, 87, 0.3);
}
.main .services .free-box .cat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 138, 87, 0.4);
  background: linear-gradient(45deg, #e6a76c, var(--first-color));
}
.main .services .free-box .cat-btn:active {
  transform: translateY(1px);
}
.main .services .free-box .cat-icon {
  font-size: 1.5rem;
  animation: bounce 1s infinite;
}
.main .services .free-box .cat-tail {
  font-size: 1.5rem;
  animation: wiggle 1s infinite;
}
.main .services .free-box .btn-text {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  padding: 0 0.5rem;
  transition: transform 0.3s ease;
}
.main .services .free-box .cat-btn:hover .btn-text {
  transform: scale(1.05);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}
.main .services .free-box:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
.main .services .free-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(192, 138, 87, 0.1) 0%, transparent 20%),
              radial-gradient(circle at 90% 80%, rgba(192, 138, 87, 0.1) 0%, transparent 20%);
  pointer-events: none;
}
.main .services .free-box .free-img {
  max-width: 180px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}
.main .services .free-box .free-img:hover {
  transform: scale(1.05);
}
.warranty {
  padding: 0px 20px;
  margin-bottom: 70px;
}
.warranty h3 {
  font-size: 45px;
  font-weight: 800;
  color: var(--first-color);
  margin-bottom: 20px;
}
.warranty .descr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px;
}
.warranty .descr p {
  width: 65%;
  display: block;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
}
.warranty .descr img {
  width: 25%;
}
.why-us {
  padding: 0px 20px;
  margin-bottom: 70px;
}
.why-us h3 {
  font-size: 45px;
  font-weight: 800;
  color: var(--first-color);
  margin-bottom: 50px;
}
.why-us .box {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.why-us .box .child-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.why-us .box .child-box .descr {
  line-height: 1.1;
}
.why-us .box .child-box .descr p {
  color: #4d4d4d;
  font-size: 32px;
  font-weight: 700;
}
.why-us .box .child-box .descr span {
  color: var(--first-color);
  font-size: 35px;
  font-weight: 800;
}
.book-now {
  padding: 0px 20px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.book-now h3 {
  color: #4d4d4d;
  font-size: 42px;
  font-weight: 700;
}
.book-now .book-now-img {
  display: block;
  margin: 0px auto;
  padding: 20px 0;
  position: relative;
}
.book-now form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px auto;
}
.book-now form .box {
  position: relative;
  width: 75%;
}
.book-now form .box label {
  position: absolute;
  top: 20%;
  right: 40px;
  z-index: 1;
}
.book-now form .box input {
  width: 100%;
  padding: 20px 100px 20px 20px;
  background-color: #dadada;
  border: none;
  outline: none;
  border-radius: 50px;
  color: #8f8f8f;
  font-size: 32px;
  font-weight: 100;
  font-family: inherit;
  margin-bottom: 10px;
  position: relative;
}
.book-now form input::placeholder {
  color: #8f8f8f;
}
.book-now form button {
  background-color: #f19e3a;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 32px;
  outline: none;
  border: 2px solid #f19e3a;
  margin-top: 20px;
  font-family: inherit;
  cursor: pointer;
  transition: 0.3s;
}
.book-now form button:is(:hover) {
  background-color: transparent;
  color: #f19e3a;
}
.main .clients {
  padding: 0px 20px;
  margin-bottom: 70px;
}
.main .clients h3 {
  font-weight: bold;
  font-size: 68px;
  color: var(--first-color);
}
/* SWIPER */
.swiper {
  width: 100%;
  height: 250px;
  margin-top: 30px;
  margin-bottom: 70px;
}
.swiper-slide {
  text-align: center;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide .image {
  background-color: transparent;
  height: 180px;
  width: 180px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid var(--first-color);
}
.swiper-slide img {
  transition: 0.3s;
}
.swiper-slide img:hover {
  transform: scale(1.1);
}
.swiper {
  margin-left: auto;
  margin-right: auto;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--first-color);
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--first-color);
}
.main .clients p {
  font-size: 45px;
  font-weight: 700;
  color: var(--second_color);
}
.main .clients p span {
  color: var(--first-color);
  font-weight: 900;
  font-size: 48px;
}
.about-us {
  padding: 0px 20px;
  margin-bottom: 70px;
}
.about-us p {
  font-size: 45px;
  font-weight: 700;
  color: var(--second_color);
}
.about-us h3 {
  font-weight: bold;
  font-size: 68px;
  color: var(--first-color);
}
.contact {
  padding: 0px 20px;
  margin-bottom: 70px;
}
.contact h3 {
  font-weight: bold;
  font-size: 68px;
  color: var(--first-color);
}
.contact p {
  font-size: 45px;
  font-weight: 700;
  color: var(--second_color);
}
.contact span {
  color: var(--first-color);
  font-weight: 900;
  font-size: 48px;

  display: block;
  direction: ltr;
}
.contact a {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
}
.contact a img {
  width: 100px;
}
/*=============== MEDIA QUERIES ===============*/
@media screen and (max-width: 1200px) {
  .header {
    width: 80%;
  }
  .main .mega-menu h3 {
    font-size: 102px;
  }
  .main .mega-menu h3 span {
    font-size: 108px;
  }
  .main .questions-box .questions {
    font-size: 25px;
  }
  .main .questions-box .image img {
    max-width: 90%;
  }
  .main .mega-menu .images .watch-now-box {
    top: 12%;
    left: 21%;
  }
}
@media screen and (max-width: 992px) {
  .header {
    width: 90%;
    padding: 30px 30px 10px;
  }
  .main .mega-menu h3 {
    font-size: 70px;
  }
  .main .mega-menu h3 span {
    font-size: 80px;
  }
  .main .mega-menu .images {
    flex-direction: column;
    gap: 20px;
  }
  .main .mega-menu .images img {
    width: 100%;
  }
  .main .mega-menu .images iframe {
    width: 700px;
    height: 390px;
  }
  .main .questions-box .questions {
    font-size: 22px;
  }
  .main .questions-box .questions li {
    margin-bottom: 30px;
  }
  .main .questions-box .questions li span {
    font-size: 30px;
  }
  .main .questions-box .image img {
    max-width: 70%;
  }
  .main .booking a {
    color: var(--first-color);
    font-weight: 500;
    font-size: 32px;
    padding: 15px 35px;
  }
  .warranty .descr p {
    width: 65%;
    display: block;
    font-size: 38px;
  }
  .main .mega-menu .images .button {
    width: 80px;
    height: 80px;
  }
  .main .mega-menu .images .watch-now-box {
    top: 10%;
    left: 17%;
  }
}
@media screen and (max-width: 767px) {
  .header .nav-links div {
    gap: 20px;
  }
  .header {
    padding: 30px 20px 10px;
    height: 90px;
  }
  .header .logo a img {
    max-width: 80%;
  }
  .header .logo::before {
    bottom: -40%;
    width: 240px;
    height: 240px;
  }
  .header .nav-links .nav-link a {
    font-size: 22px;
  }
  .main .mega-menu .images .watch-now-box {
    top: 13%;
    left: 12%;
  }
  .main .mega-menu .images .watch-now-box .watch-now {
    left: 4%;
    top: -30%;
    font-size: 16px;
  }
  .main .mega-menu .images .watch-now-box .arrow {
    width: 65%;
  }
  .main .mega-menu .images .warranty {
    width: 18%;
  }
  .main .mega-menu h3 {
    font-size: 55px;
  }
  .main .mega-menu h3 span {
    font-size: 60px;
  }
  .main .mega-menu .images iframe {
    width: 570px;
    height: 315px;
  }
  .main .mega-menu p {
    font-size: 42px;
  }
  .main .questions-box {
    flex-direction: column;
  }
  .warranty .descr {
    padding: 0;
    flex-direction: column;
    gap: 20px;
  }
  .warranty .descr p {
    text-align: center;
  }
  .why-us .box {
    flex-direction: column;
    gap: 20px;
  }
  .book-now form .box {
    width: 95%;
  }
  .main .services .free-box {
    padding: 2rem;
  }
  .main .services .free-box .cat-btn {
    padding: 1rem 2rem;
    font-size: 24px;
  }
  .main .services .free-box .cat-icon,
  .main .services .free-box .cat-tail {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .header {
    padding: 20px 10px 10px;
    height: 70px;
  }
  .header .logo::before {
    bottom: -80%;
    width: 220px;
    height: 240px;
  }
  .header .logo a {
    bottom: -45px;
    left: 46%;
  }
  .header .logo a img {
    max-width: 75%;
  }
  .header .nav-links .nav-link a {
    font-size: 20px;
  }
  .header .nav-links div {
    gap: 15px;
  }
  .main .mega-menu h3 span {
    font-size: 36px;
  }
  .main .mega-menu h3 {
    font-size: 38px;
  }
  .main .mega-menu .images .button {
    width: 60px;
    height: 60px;
    top: 5%;
  }
  .main .mega-menu .images .watch-now-box {
    top: 11%;
    left: 4%;
  }
  .main .mega-menu .images .watch-now-box .arrow {
    width: 55%;
  }
  .main .mega-menu .images .warranty {
    width: 22%;
    bottom: -21%;
  }
  .main .mega-menu .images iframe {
    width: 350px;
    height: 195px;
  }
  .main .mega-menu {
    margin-top: 50px;
  }
  .main .questions-box {
    padding: 0 5px;
  }
  .main .questions-box .questions {
    font-size: 18px;
  }
  .main .services .free-box a {
    font-size: 25px;
  }
  .warranty h3 {
    font-size: 40px;
  }
  .warranty .descr p {
    width: 100%;
    font-size: 28px;
  }
  .book-now h3 {
    font-size: 35px;
  }
  .main .clients p {
    font-size: 35px;
  }
  .about-us h3 {
    font-size: 50px;
  }
  .about-us p {
    font-size: 35px;
  }
  .contact h3 {
    font-size: 50px;
  }
  .contact p {
    font-size: 35px;
  }
  .book-now form .box label {
    right: 25px;
  }
  .book-now form .box label img {
    max-width: 85%;
  }
  .book-now form .box input {
    padding: 15px 75px 15px 15px;
    font-size: 25px;
  }
  .book-now form button {
    padding: 15px 20px;
    font-size: 24px;
  }
  .main .services .free-box .cat-btn {
    padding: 0.8rem 1.5rem;
    font-size: 20px;
  }
  .main .services .free-box .cat-icon,
  .main .services .free-box .cat-tail {
    font-size: 1.4rem;
  }
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--first-color);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-text {
  background-color: white;
  color: var(--first-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid var(--first-color);
}

.whatsapp-btn img {
  width: 32px;
  height: 32px;
}

.whatsapp-btn span {
  font-size: 20px;
  font-weight: 600;
  font-family: 'Tajawal', sans-serif;
  color: white;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(192, 138, 87, 0.2);
}

/* Popup Form */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.popup-form.active {
  display: flex;
}

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--first-color);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close-btn:hover {
  background-color: rgba(192, 138, 87, 0.1);
}

.popup-content form {
  margin-top: 1rem;
}

.popup-content .box {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

.popup-content .box label {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 1;
}

.popup-content .box label img {
  width: 24px;
  height: 24px;
}

.popup-content .box input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.popup-content .box input:focus {
  border-color: var(--first-color);
  box-shadow: 0 0 0 2px rgba(192, 138, 87, 0.1);
  outline: none;
}

.popup-content .book-now-end {
  width: 100%;
  padding: 12px;
  background-color: var(--first-color);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.popup-content .book-now-end:hover {
  background-color: transparent;
  color: var(--first-color);
  border: 2px solid var(--first-color);
}

/* Add animation for popup */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-form.active .popup-content {
  animation: popupFadeIn 0.3s ease forwards;
}

/* Responsive styles */
@media screen and (max-width: 767px) {
  .sticky-whatsapp {
    bottom: 15px;
    left: 15px;
  }
  
  .whatsapp-btn {
    padding: 10px 20px;
  }
  
  .whatsapp-btn img {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-btn span {
    font-size: 18px;
  }

  .price-text {
    font-size: 14px;
    padding: 3px 10px;
  }

  .popup-content {
    width: 95%;
    padding: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .sticky-whatsapp {
    bottom: 10px;
    left: 10px;
  }
  
  .whatsapp-btn {
    padding: 8px 16px;
  }
  
  .whatsapp-btn img {
    width: 24px;
    height: 24px;
  }
  
  .whatsapp-btn span {
    font-size: 16px;
  }

  .price-text {
    font-size: 12px;
    padding: 2px 8px;
  }

  .popup-content {
    padding: 1rem;
  }

  .popup-content .box input {
    font-size: 14px;
    padding: 10px 40px 10px 12px;
  }

  .popup-content .book-now-end {
    font-size: 16px;
    padding: 10px;
  }
}

.booking.from-top {
  margin-top: 1px;
}
