/* poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

p {
  line-height: 1.6;
}

h1 {
  line-height: 1.2;
}

h2 {
  line-height: 1.2;
}

h3 {
  line-height: 1.3;
}

h4 {
  line-height: 1.4;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none;
}
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23003f95' stroke-width='2' fill='none' d='M1 1l5 5 5-5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 32px!important;
}

select {
  color: #a4a4a4;
}

select:has(option:not([value=""]):checked),
select option:not([value=""]) {
  color: #364153;
}

select option[value=""] {
  color: #a4a4a4 !important;
}

/* --------------------------------- Date Icon */
input[name="booking_date"] {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23c1c1c1' d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11zm-7-9h5v5h-5z'/%3E%3C/svg%3E") no-repeat right 14px center;
    background-size: 20px 20px;
    padding-right: 35px;
}

.animate-blink {
  animation: blink 0.8s infinite;
}


@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}


/* --------------------------------- Owl Slider  */
.owl-carousel {
  --owl_nav_bg: #f69855;
  --owl_nav_color: #fff;
  --nav_size: 32px;
  --nav_font_size: 14px;
}

.owl-carousel .owl-stage {
  display: flex;
}

.owl-stage-outer,
.owl-stage,
.owl-item>div {
  height: 100%;
}
.owl-item{
  height: auto;
}

.owl-carousel .owl-item img {
  width: auto;
}

.owl-nav>button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: var(--nav_size);
  width: var(--nav_size);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1;
  font-size: var(--nav_font_size);
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.owl-nav>button>i {
  font-size: var(--nav_font_size);
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  background: var(--owl_nav_bg);
  color: var(--owl_nav_color);
}

.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}

.owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  margin-top: 50px;
}

button.owl-dot span {
  display: block;
  height: 10px;
  width: 10px;
  background-color: #dba006;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  outline: 1px solid transparent;
  outline-offset: 4px;
}

button.owl-dot.active span {
  outline-color: #dba006;
}

.owl-carousel button.disabled {
  background-color: #fff !important;
  --owl_nav_color: #8b8b8b;
  pointer-events: none;
}


/* ------------------------------------------------ popup */
/* === Popup Overlay === */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column; /* always flex — no display none flicker */
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:opacity 0.35s ease, visibility 0.35s ease;
} 

/* === Popup Box === */
.popup-box {
    height: auto;
    max-height: calc(100vh - 90px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    width: 90%;
    padding: 20px;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
} 

/* === Active States === */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.popup-overlay.active .popup-box {
    transform: translateY(0);
    opacity: 1;
} 

/* === Close Button === */
.close-popup-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    color: #444;
    cursor: pointer;
    z-index: 10;
}
.close-popup-btn:hover {
    color: #000;
}
.close-popup-btn > i {
    pointer-events: none;
} 

/* === Popup Item === */
.popup-item {
    display: none;
    flex-direction: column;
    height: 100%;
}
.popup-item.active {
    display: flex;
    flex-direction: column;
}
.popup-item::-webkit-scrollbar {
    width: 6px;
}
.popup-item::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 99px;
}
.popup-item::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.open-popup {
    cursor: pointer;
} 