@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");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html, body {
  scroll-behavior: smooth;
  max-width: 100vw;
  position: relative;
}

.h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.25em;
}

@media only screen and (max-width: 1600px) {
  .h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1400px) {
  .h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 700px) {
  .h2 {
    font-size: 30px;
  }
}
header {
  height: 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: #F2D717;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
}
header .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 100px;
}
header .logo {
  display: flex;
}
header .logo img {
  height: 3.5rem;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 35px;
}
header nav a {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: 0.25s ease;
}
header nav a:hover, header nav a.active {
  color: #3F65CF;
}
header .cta__btn a {
  font-size: 20px;
  padding: 0.5em 1.5em;
  color: #F47A4F;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #3F65CF;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 55;
  background: #3F65CF;
  backdrop-filter: blur(5px);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 20px;
  text-decoration: none;
  border-bottom: 2px solid #FB753F;
  font-weight: 600;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1400px) {
  header {
    height: 6rem;
  }
  header .logo img {
    height: 2.5rem;
  }
  header .left {
    gap: 35px;
  }
  header nav {
    gap: 25px;
  }
  header nav a {
    font-size: 15px;
  }
  header .cta__btn a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) {
  header {
    padding: 0 10%;
  }
  header nav {
    display: none;
  }
  header .cta__btn {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
  position: relative;
  cursor: pointer;
}
.btn a {
  font-size: 33px;
  border: 3px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  padding: 0.25em 1.5em;
  font-weight: 700;
  transition: 0.2s ease;
  z-index: 2;
  position: relative;
}
.btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  border-radius: 50px;
}
.btn:hover a {
  transform: translateX(10px);
}

@media only screen and (max-width: 1600px) {
  .btn a {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1400px) {
  .btn a {
    font-size: 26px;
  }
}
@media only screen and (max-width: 900px) {
  .btn a {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) {
  .btn a {
    font-size: 19px;
  }
}
footer {
  padding: 3.5rem 5%;
  background: #D9D9D9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer img {
  height: 3.5rem;
}
footer .socials {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
footer .socials span {
  font-size: 20px;
}
footer .socials .links {
  font-size: 27px;
  font-weight: 700;
}
footer .socials .links a {
  text-decoration: none;
  color: #000;
  transition: 0.25s ease;
}
footer .socials .links a:hover {
  color: #3F65CF;
}
footer .link {
  font-size: 23px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.lubocodes-credit {
  background: #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10%;
}
.lubocodes-credit span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}
.lubocodes-credit span a {
  color: black;
  text-decoration: underline;
}

@media only screen and (max-width: 700px) {
  .lubocodes-credit {
    padding: 10px 10%;
  }
  .lubocodes-credit span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1400px) {
  footer .socials {
    gap: 10px;
  }
  footer .socials span {
    font-size: 16px;
  }
  footer .socials .links {
    font-size: 21px;
  }
  footer .link {
    font-size: 18px;
  }
}
@media only screen and (max-width: 850px) {
  footer img {
    height: 2.5rem;
  }
  footer .socials {
    flex-flow: column;
    gap: 0;
  }
  footer .link {
    font-size: 15px;
  }
}
@media only screen and (max-width: 700px) {
  footer {
    justify-content: space-around;
    flex-flow: row wrap;
    gap: 5px;
    row-gap: 20px;
  }
  footer img {
    flex: 100%;
    height: auto;
    margin: 0 25%;
  }
  footer .socials {
    flex: 100%;
    flex-flow: row;
    gap: 10px;
    justify-content: center;
  }
  footer .link {
    font-size: 14px;
  }
}
.gallery {
  padding: 5rem 10%;
}
.gallery .slide {
  display: none;
}
.gallery .slide#gallery-slide-1 {
  display: flex;
}
.gallery .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.gallery .content .image {
  width: 100%;
  height: 17.5vw;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
}
.gallery .content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  transition: transform 0.35s ease;
  display: block;
}
.gallery .content .image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  background: rgba(63, 101, 207, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.gallery .content .image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%233F65CF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center/22px no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery .content .image:hover img {
  transform: scale(1.07);
}
.gallery .content .image:hover::after {
  background: rgba(63, 101, 207, 0.25);
}
.gallery .content .image:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 2.5rem;
}
.gallery .navigation button {
  height: 41px;
  width: 41px;
  border-radius: 50%;
  background: rgba(63, 101, 207, 0.6);
  border: none;
  transition: 0.25s ease;
  cursor: pointer;
}
.gallery .navigation button.active, .gallery .navigation button:hover {
  background: #3F65CF;
}
.gallery .navigation .gallery-nav-arrow {
  width: 69px;
  height: 69px;
  background: none;
  border: none;
  color: #3F65CF;
  font-size: 45px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding-bottom: 1px;
  flex-shrink: 0;
}
.gallery .navigation .gallery-nav-arrow:hover {
  background: none;
}
.gallery .navigation .gallery-nav-arrow:active {
  transform: scale(0.92);
}
.gallery .navigation .gallery-nav-arrow.gallery-nav-prev {
  margin-right: 4px;
}
.gallery .navigation .gallery-nav-arrow.gallery-nav-next {
  margin-left: 4px;
}

#gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

#gallery-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 35, 0.88);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

#gallery-lb-img-wrap {
  position: relative;
  z-index: 2;
  max-width: calc(100vw - 200px);
  max-height: 90vh;
  transition: opacity 0.15s ease;
}
#gallery-lb-img-wrap.switching {
  opacity: 0;
}
#gallery-lb-img-wrap img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

#gallery-lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding-bottom: 2px;
}
#gallery-lb-close:hover {
  background: rgba(63, 101, 207, 0.8);
  border-color: #3F65CF;
  transform: rotate(90deg);
}

#gallery-lb-prev,
#gallery-lb-next {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding-bottom: 2px;
  margin: 0 16px;
  user-select: none;
}
#gallery-lb-prev:hover,
#gallery-lb-next:hover {
  background: #3F65CF;
  border-color: #3F65CF;
}
#gallery-lb-prev:active,
#gallery-lb-next:active {
  transform: scale(0.92);
}

#gallery-lb-counter {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 16px;
  border-radius: 20px;
}

body.lb-open {
  overflow: hidden;
}

@media only screen and (max-width: 700px) {
  #gallery-lb-img-wrap {
    max-width: calc(100vw - 100px);
  }
  #gallery-lb-prev,
  #gallery-lb-next {
    width: 44px;
    height: 44px;
    font-size: 32px;
    margin: 0 6px;
  }
  #gallery-lb-close {
    width: 42px;
    height: 42px;
    font-size: 26px;
    top: 12px;
    right: 12px;
  }
}
@media only screen and (max-width: 1550px) {
  .gallery .navigation button {
    height: 35px;
    width: 35px;
  }
  .gallery .navigation .gallery-nav-arrow {
    width: 60px;
    height: 60px;
    font-size: 39px;
  }
}
@media only screen and (max-width: 1300px) {
  .gallery .content {
    gap: 25px;
  }
  .gallery .navigation button {
    height: 27px;
    width: 27px;
  }
  .gallery .navigation .gallery-nav-arrow {
    width: 51px;
    height: 51px;
    font-size: 33px;
  }
}
@media only screen and (max-width: 700px) {
  .gallery {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .gallery .content {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    padding: 0 5%;
  }
  .gallery .content .image {
    height: auto;
    aspect-ratio: 16/12;
    border-radius: 15px;
  }
  .gallery .content .image img {
    border-radius: 15px;
  }
  .gallery .navigation {
    margin-top: 1.5rem;
    gap: 12px;
  }
  .gallery .navigation button {
    height: 23px;
    width: 23px;
    background: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.6);
  }
  .gallery .navigation button.active, .gallery .navigation button:hover {
    background: #fff;
  }
  .gallery .navigation .gallery-nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 30px;
    color: #fff;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #fff;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.partners {
  padding: 5rem 10% 7.5rem;
}
.partners h2.h2 {
  text-align: center;
}
.partners .partners__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 35px;
  margin-top: 2rem;
}
.partners .partners__content img {
  width: 140px;
  height: 55px;
  object-fit: contain;
}
.partners .partners__content img[src*=tepe] {
  width: 90px;
}

@media only screen and (max-width: 1400px) {
  .partners {
    padding-top: 3rem;
  }
  .partners .partners__content {
    gap: 15px 25px;
  }
  .partners .partners__content img {
    width: 115px;
    height: 45px;
  }
}
@media only screen and (max-width: 900px) {
  .partners {
    padding: 5rem 10%;
  }
}
@media only screen and (max-width: 700px) {
  .partners {
    padding: 3.5rem 10%;
  }
  .partners .partners__content {
    gap: 15px 20px;
  }
  .partners .partners__content img {
    width: 90px;
    height: 35px;
  }
}
a {
  color: #FF6B35;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #E55A2B;
  text-decoration: underline;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .main-content {
    padding: 3rem;
  }
}

.form__header {
  background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.form__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.form__header .header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__header .header__logo img {
  height: 50px;
}
.form__header .header__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
}
@media (min-width: 768px) {
  .form__header .header__title {
    font-size: 3rem;
  }
}
.form__header .header__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.logo-brick {
  width: 40px;
  height: 24px;
  background: #FFBA08;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.logo-brick::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 6px;
  width: 10px;
  height: 6px;
  background: #FFBA08;
  border-radius: 2px 2px 0 0;
}
.logo-brick::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 6px;
  width: 10px;
  height: 6px;
  background: #FFBA08;
  border-radius: 2px 2px 0 0;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
}

.info-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgb(211.426446281, 244.773553719, 241.6611570248) 0%, rgb(194.9041322314, 240.8958677686, 236.6033057851) 100%);
  border: 2px solid rgb(161.8595041322, 233.1404958678, 226.4876033058);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.info-banner__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #2EC4B6;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.info-banner__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.info-banner__content strong {
  color: #25A99D;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.info-banner__content span {
  font-size: 0.9375rem;
  color: #2D3047;
}
.info-banner__content span em {
  font-style: normal;
  font-weight: 700;
  color: #25A99D;
}

.form-section {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(45, 48, 71, 0.08);
  border: 1px solid #E8E9ED;
}
@media (min-width: 768px) {
  .form-section {
    padding: 3rem;
  }
}
.form-section--summary {
  background: linear-gradient(135deg, #FEF3ED 0%, #FFFFFF 100%);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed #E8E9ED;
}

.section-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.section-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #2D3047;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .form-row--address {
    grid-template-columns: 2fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-row .form-group {
  margin-bottom: 0;
}
.form-group--checkbox {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #2D3047;
  margin-bottom: 0.5rem;
}
.form-label.required::after {
  content: " *";
  color: #E63946;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  color: #2D3047;
  background: #FFFFFF;
  border: 2px solid #E8E9ED;
  border-radius: 12px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  outline: none;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #9498AB;
}
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgb(203.3902439024, 205.6341463415, 214.6097560976);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #FF6B35;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}
.form-input:invalid:not(:placeholder-shown),
.form-select:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
  border-color: #E63946;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235C6078' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 4rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #9498AB;
  line-height: 1.5;
}
.form-hint svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #9498AB;
}

.reservation-type-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .reservation-type-group {
    flex-direction: row;
  }
}

.reservation-type-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: 2px solid #E8E9ED;
  border-radius: 12px;
  cursor: pointer;
  transition: all 150ms ease;
  background: #FFFFFF;
}
.reservation-type-option input[type=radio] {
  accent-color: #FF6B35;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}
.reservation-type-option:hover {
  border-color: rgb(203.3902439024, 205.6341463415, 214.6097560976);
}
.reservation-type-option--active {
  border-color: #FF6B35;
  background: rgba(255, 107, 53, 0.05);
}
.reservation-type-option__text {
  display: flex;
  flex-direction: column;
}
.reservation-type-option__text strong {
  font-size: 0.9375rem;
  color: #2D3047;
}
.reservation-type-option__text span {
  font-size: 0.8125rem;
  color: #9498AB;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.5rem;
}

.day-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid #E8E9ED;
  border-radius: 12px;
  cursor: pointer;
  transition: all 150ms ease;
  background: #FFFFFF;
  font-size: 0.9375rem;
  color: #2D3047;
}
.day-checkbox input[type=checkbox] {
  accent-color: #FF6B35;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}
.day-checkbox:hover {
  border-color: rgb(203.3902439024, 205.6341463415, 214.6097560976);
}
.day-checkbox--checked {
  border-color: #FF6B35;
  background: rgba(255, 107, 53, 0.05);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}
.checkbox-label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkbox-label input[type=checkbox]:checked + .checkbox-custom {
  background: #FF6B35;
  border-color: #FF6B35;
}
.checkbox-label input[type=checkbox]:checked + .checkbox-custom::after {
  opacity: 1;
  transform: scale(1);
}
.checkbox-label input[type=checkbox]:focus + .checkbox-custom {
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.checkbox-custom {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 2px solid #E8E9ED;
  border-radius: 8px;
  position: relative;
  transition: all 150ms ease;
}
.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: all 150ms ease;
}

.checkbox-text {
  font-size: 0.9375rem;
  color: #5C6078;
  line-height: 1.5;
}

.child-card {
  background: #FEF3ED;
  border: 2px solid #E8E9ED;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 250ms ease;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.child-card.removing {
  animation: slideOut 0.3s ease forwards;
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.child-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E8E9ED;
}
.child-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2D3047;
  flex: 1;
}
.child-card .form-input,
.child-card .form-textarea {
  background: #FFFFFF;
}

.child-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2EC4B6 0%, #25A99D 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.btn-add-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #FF6B35;
  background: transparent;
  border: 2px dashed #FF6B35;
  border-radius: 12px;
  cursor: pointer;
  transition: all 150ms ease;
}
.btn-add-child:hover {
  background: rgba(255, 107, 53, 0.05);
  border-style: solid;
}
.btn-add-child:active {
  transform: scale(0.98);
}
.btn-add-child svg {
  transition: transform 150ms ease;
}
.btn-add-child:hover svg {
  transform: rotate(90deg);
}

.btn-remove-child {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 9999px;
  color: #9498AB;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms ease;
}
.btn-remove-child:hover {
  background: rgba(230, 57, 70, 0.1);
  color: #E63946;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 150ms ease;
  box-shadow: 0 4px 12px rgba(45, 48, 71, 0.08), 0 4px 0 rgb(196.8571428571, 67.7857142857, 24.1428571429);
  position: relative;
  top: 0;
}
.btn-submit:hover {
  background: linear-gradient(135deg, #FF8A5C 0%, #FF6B35 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 48, 71, 0.12), 0 6px 0 rgb(196.8571428571, 67.7857142857, 24.1428571429);
}
.btn-submit:active {
  transform: translateY(2px);
  box-shadow: 0 2px 4px rgba(45, 48, 71, 0.06), 0 2px 0 rgb(196.8571428571, 67.7857142857, 24.1428571429);
}
.btn-submit svg {
  transition: transform 150ms ease;
}
.btn-submit:hover svg {
  transform: translateX(4px);
}

.price-summary {
  background: #FFFFFF;
  border: 2px solid #E8E9ED;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}
.price-row:not(:last-child) {
  border-bottom: 1px solid #E8E9ED;
}
.price-row--discount .price-value {
  color: #2EC4B6;
}
.price-row--total {
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.price-row--total .price-label,
.price-row--total .price-value {
  font-size: 1.125rem;
  font-weight: 800;
}

.price-label {
  font-size: 0.9375rem;
  color: #5C6078;
}

.price-value {
  font-weight: 700;
  color: #2D3047;
}
.price-value--total {
  color: #FF6B35;
  font-size: 1.5rem !important;
}
.price-value--discount {
  color: #2EC4B6;
}

.footer {
  background: #2D3047;
  padding: 2rem 1.5rem;
  text-align: center;
}
.footer__content {
  max-width: 720px;
  margin: 0 auto;
}
.footer__content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}
.footer__note {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.875rem !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}/*# sourceMappingURL=style.css.map */