@charset "UTF-8";
/* Global colors */
*,
html,
body,
a,
p {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
  color: #332e2e;
}

/* Global styles */
body {
  background-color: #fff7f3;
  scroll-behavior: smooth;
}

#layout-content {
  min-height: calc(100vh - 243.09px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pink-batton {
  background: linear-gradient(135deg, #ffd3f3 0%, rgb(255, 226.3, 247.1727272727) 100%);
  box-shadow: 0 4px 15px rgba(255, 211, 243, 0.4);
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pink-batton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 211, 243, 0.6);
}

.button {
  background: linear-gradient(135deg, #332e2e 0%, rgb(64.4072164948, 58.0927835052, 58.0927835052) 100%);
  color: #fff7f3;
  text-decoration: none;
  border-radius: 20px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgb(64.4072164948, 58.0927835052, 58.0927835052) 0%, rgb(77.8144329897, 70.1855670103, 70.1855670103) 100%);
}

.navbar {
  background: rgba(255, 247, 243, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 1030;
  padding: 1.2rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  padding: 0.8rem 0 !important;
  background: rgba(255, 247, 243, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}
.navbar.scrolled .navbar-brand .header-logo {
  width: 50px;
  height: 37px;
}
.navbar.scrolled .navbar-brand .brand-text {
  font-size: 1.2rem;
}
.navbar .navbar-brand {
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4rem;
  color: #332e2e;
  letter-spacing: -0.3px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar .navbar-brand .header-logo {
  width: 60px;
  height: 45px;
  display: block;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.navbar .navbar-brand .header-logo .logo-path {
  transform: scale(2.4);
  transform-origin: center center;
}
.navbar .navbar-brand .brand-text {
  transition: font-size 0.3s ease;
}
.navbar .navbar-brand:hover {
  transform: translateY(-2px);
  color: #ffd3f3;
}
.navbar .navbar-brand:hover .header-logo {
  transform: scale(1.05);
}
.navbar .nav-item a {
  font-weight: 500;
  font-size: 1rem;
  color: #2c3e50;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.navbar .nav-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd3f3 0%, #ffd3f3 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.navbar .nav-item a:hover {
  color: #ffd3f3;
  transform: translateY(-2px);
}
.navbar .nav-item a:hover::before {
  width: 80%;
}
.navbar .nav-item a.active {
  color: #ffd3f3;
  font-weight: 600;
}
.navbar .nav-item a.active::before {
  width: 80%;
}
.navbar .nav-item .pink-batton {
  background: linear-gradient(135deg, #ffd3f3 0%, rgb(255, 226.3, 247.1727272727) 100%);
  color: #332e2e;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(255, 211, 243, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .nav-item .pink-batton::before {
  display: none;
}
.navbar .nav-item .pink-batton:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 211, 243, 0.6);
  background: linear-gradient(135deg, rgb(255, 221.2, 245.7818181818) 0%, rgb(255, 236.5, 249.9545454545) 100%);
}
.navbar .navbar-toggler {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  transition: all 0.3s ease;
}
.navbar .navbar-toggler:hover {
  border-color: #ffd3f3;
  box-shadow: 0 4px 12px rgba(255, 211, 243, 0.3);
}
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }
  .navbar .navbar-brand {
    font-size: 1.2rem;
  }
  .navbar .nav-item a {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }
  .navbar .nav-item .pink-batton {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

.footer {
  background: linear-gradient(135deg, #ffd3f3 0%, rgb(255, 226.3, 247.1727272727) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 0 2rem 0;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}
.footer-list {
  display: flex;
  list-style: none;
  margin: 0 auto;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding: 0;
}
.footer-list-item-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.footer-list-item-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer-list-item-link:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.footer-list-item-link:hover::before {
  opacity: 1;
}
.footer-list-item-link:hover .footer-list-item-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.footer-list-item-link:hover .footer-list-item-label {
  color: #332e2e;
  font-weight: 600;
}
.footer-list-item-icon {
  width: 1.8rem;
  height: 1.8rem;
  filter: invert(11%) sepia(1%) saturate(5191%) hue-rotate(321deg) brightness(100%) contrast(81%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-list-item-label {
  color: #332e2e;
  font-weight: 500;
  font-size: 0.85rem;
  margin-top: 0.6rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.footer-autor {
  background: linear-gradient(135deg, #d9ffb6 0%, rgb(224.9643835616, 255, 197.3) 100%);
  padding: 0.7rem 1.5rem;
  border-radius: 20px;
  color: #332e2e;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  box-shadow: 0 8px 25px rgba(217, 255, 182, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.footer-autor::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.footer-autor:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(217, 255, 182, 0.6);
}
.footer-autor:hover::before {
  left: 100%;
}
.footer-autor span {
  display: inline-block;
  font-family: "Encode Sans SC", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem 0;
  }
  .footer-list {
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-list-item-link {
    padding: 1rem 1.2rem;
  }
  .footer-list-item-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .footer-list-item-label {
    font-size: 0.75rem;
  }
  .footer-autor {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff7f3 0%, rgb(255, 253.8, 253.2) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
}
.preloader-logo {
  width: 180px;
  height: 180px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo .logo-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  filter: drop-shadow(0 0 20px rgba(255, 211, 243, 0.3));
  transform-origin: center;
  animation: svgFadeIn 1s ease-out 0.3s forwards, logoFloat 3s ease-in-out infinite 1.5s, logoGlow 3s ease-in-out infinite 2s;
  transition: opacity 0.3s ease;
}
.preloader-logo .logo-svg .logo-path {
  opacity: 0;
  transform: scale(0.5);
  transform-origin: center;
  animation: pathFadeIn 0.8s ease-out forwards;
}
.preloader-logo .logo-svg .logo-path-1 {
  animation-delay: 0.4s;
}
.preloader-logo .logo-svg .logo-path-2 {
  animation-delay: 0.6s;
}
.preloader-logo .logo-svg .logo-path-3 {
  animation-delay: 0.8s;
}
.preloader-logo .logo-svg .logo-path path {
  animation: pathPulse 2s ease-in-out infinite;
}
.preloader-logo::before {
  content: "";
  position: absolute;
  inset: -20px;
  border: 3px solid #ffd3f3;
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s ease-out 1s infinite;
  z-index: 1;
}
.preloader-logo::after {
  content: "";
  position: absolute;
  inset: -40px;
  border: 2px solid #d9ffb6;
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s ease-out 1.5s infinite;
  z-index: 0;
}
.preloader-text {
  font-family: "Poppins", serif;
  font-size: 1.5rem;
  color: #332e2e;
  letter-spacing: -0.3px;
  opacity: 0;
  animation: fadeInText 0.8s ease-out 0.3s forwards;
}

@keyframes svgFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}
@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 211, 243, 0.3)) drop-shadow(0 0 30px rgba(217, 255, 182, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255, 211, 243, 0.6)) drop-shadow(0 0 40px rgba(217, 255, 182, 0.4));
  }
}
@keyframes pathFadeIn {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes pathPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.4;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .preloader-logo {
    width: 140px;
    height: 140px;
  }
  .preloader-text {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .preloader-logo {
    width: 120px;
    height: 120px;
  }
  .preloader-text {
    font-size: 1rem;
  }
}
/**
 * PJAX Transitions Styles
 * Стили для плавных переходов между страницами
 */
#layout-content {
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  min-height: 100vh;
}
body.preloader-hidden #layout-content {
  opacity: 1;
}

.page-transition-fade {
  animation: fadeIn 0.4s ease-out;
}
.page-transition-slide-left {
  animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-transition-slide-right {
  animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-transition-slide-up {
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-transition-scale {
  animation: scaleIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.pjax-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 211, 243, 0.2);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pjax-loading.active {
  opacity: 1;
}
.pjax-loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffd3f3 0%, #ffd3f3 100%);
  animation: pjaxProgress 0.5s ease-out forwards;
}

@keyframes pjaxProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #layout-content {
    transition-duration: 0.3s;
  }
}
.welcome {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.welcome::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 247, 243, 0.8) 0%, rgba(255, 211, 243, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}
.welcome .welcome-content {
  padding-left: 3rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.welcome .welcome-content h1 {
  font-family: "Encode Sans SC", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: clamp(2.5rem, 10vw, 5rem);
  margin-bottom: 1.5rem;
  color: #332e2e;
  letter-spacing: -1px;
  line-height: 1.1;
  position: relative;
}
.welcome .welcome-content h1::after {
  content: "";
  display: block;
  background: linear-gradient(90deg, #ffd3f3 0%, #ffd3f3 100%);
  width: 0;
  height: 6px;
  border-radius: 3px;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(255, 211, 243, 0.5);
  transition: width 0.8s ease-out 0.3s;
}
.welcome .welcome-content h6 {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.8;
  color: rgb(34.9516129032, 49.25, 63.5483870968);
  max-width: 90%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}
body.preloader-hidden .welcome .welcome-content {
  opacity: 1;
  transform: translateY(0);
}
body.preloader-hidden .welcome .welcome-content h1::after {
  width: 120px;
}
body.preloader-hidden .welcome .welcome-content h6 {
  opacity: 1;
  transform: translateY(0);
}
.welcome .welcome-image-box {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0 0 0 80px;
}
.welcome .welcome-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 211, 243, 0.1) 0%, rgba(217, 255, 182, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}
.welcome .welcome-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(1.05) contrast(1.05);
}
.welcome .welcome-image-box:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .welcome {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }
  .welcome .welcome-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .welcome .welcome-content h1 {
    margin-bottom: 1rem;
  }
  .welcome .welcome-content h1::after {
    margin: 1rem auto 0;
  }
  .welcome .welcome-content h6 {
    max-width: 100%;
  }
  .welcome .welcome-image-box {
    border-radius: 0;
    height: 50vh;
    min-height: 300px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}
.banner {
  background: linear-gradient(135deg, #d9ffb6 0%, rgb(230.2739726027, 255, 207.5) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.banner .row {
  position: relative;
  z-index: 1;
}
.banner h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #332e2e;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.banner span {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgb(24.1855670103, 21.8144329897, 21.8144329897);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 2rem;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}
.banner .button {
  background: linear-gradient(135deg, #332e2e 0%, rgb(64.4072164948, 58.0927835052, 58.0927835052) 100%);
  color: #fff7f3;
  text-decoration: none;
  border-radius: 20px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s, all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.banner .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.banner .button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgb(64.4072164948, 58.0927835052, 58.0927835052) 0%, rgb(77.8144329897, 70.1855670103, 70.1855670103) 100%);
}
.banner .button:hover::before {
  left: 100%;
}
body.preloader-hidden .banner h2 {
  opacity: 1;
  transform: translateY(0);
}
body.preloader-hidden .banner span {
  opacity: 1;
  transform: translateY(0);
}
body.preloader-hidden .banner .button {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .banner {
    padding: 3rem 0;
  }
  .banner h2 {
    margin-bottom: 1rem;
  }
  .banner span {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  .banner .button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.consultation {
  padding: 5rem 0;
}
.consultation .row:first-child {
  margin-bottom: 3rem;
}
.consultation .row:first-child h5 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}
.consultation .row:first-child span {
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 400;
  color: #6c757d;
  display: block;
}
.consultation-card {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 211, 243, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.consultation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd3f3 0%, #ffd3f3 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.consultation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
}
.consultation-card:hover::before {
  opacity: 1;
}
.consultation-card:hover .consultation-card-text-box {
  background: linear-gradient(135deg, #332e2e 0%, rgb(64.4072164948, 58.0927835052, 58.0927835052) 100%);
}
.consultation-card-text-box {
  background: linear-gradient(135deg, #332e2e 0%, rgb(42.9556701031, 38.7443298969, 38.7443298969) 100%);
  padding: 1.8rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.consultation-card-text-box h6 {
  position: relative;
  color: #fff7f3;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.consultation-card-text-box h6::after {
  content: "";
  display: block;
  background: linear-gradient(90deg, #d9ffb6 0%, rgb(230.2739726027, 255, 207.5) 100%);
  width: 60px;
  height: 4px;
  border-radius: 2px;
  margin-top: 0.8rem;
  box-shadow: 0 2px 10px rgba(217, 255, 182, 0.5);
  transition: width 0.3s ease;
}
.consultation-card-text-box:hover h6::after {
  width: 80px;
}
.consultation-card-text-box span {
  color: rgba(255, 247, 243, 0.9);
  font-size: 0.9rem;
  font-weight: 400;
  text-align: justify;
  line-height: 1.7;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .consultation {
    padding: 3rem 0;
  }
  .consultation .row:first-child {
    margin-bottom: 2rem;
  }
  .consultation-card {
    margin-bottom: 1.5rem;
    border-radius: 20px;
  }
  .consultation-card-text-box {
    padding: 1.5rem 1.5rem;
  }
  .consultation-card-text-box h6 {
    font-size: 1rem;
  }
  .consultation-card-text-box span {
    font-size: 0.85rem;
  }
}

.booking-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}
.booking-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0;
  border: none;
}
.booking-tabs .nav-link {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.booking-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffd3f3 0%, rgb(255, 236.5, 249.9545454545) 100%);
  transition: left 0.3s ease;
  z-index: -1;
}
.booking-tabs .nav-link span {
  position: relative;
  z-index: 1;
}
.booking-tabs .nav-link:hover {
  border-color: #ffd3f3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 211, 243, 0.3);
}
.booking-tabs .nav-link.active {
  border-color: #ffd3f3;
  background: linear-gradient(135deg, #ffd3f3 0%, rgb(255, 236.5, 249.9545454545) 100%);
  color: #332e2e;
  box-shadow: 0 8px 25px rgba(255, 211, 243, 0.4);
  transform: translateY(-2px);
}
.booking-tabs .nav-link.active::before {
  left: 0;
}
.booking-header {
  text-align: center;
  padding: 40px 0 50px 0;
}
.booking-header h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2c3e50 0%, rgb(62.0967741935, 87.5, 112.9032258065) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.booking-header p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #6c757d;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}
.booking-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.booking-form-section {
  background: #ffffff;
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 211, 243, 0.2);
  transition: all 0.3s ease;
}
.booking-form-section:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}
.booking-selection-card .info-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  margin-top: 0;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 12px;
  position: relative;
}
.booking-selection-card .info-header h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ffd3f3 0%, #ffd3f3 100%);
}
.booking-selection-card .info-content .form-group {
  margin-bottom: 24px;
}
.booking-selection-card .info-content .form-group label {
  display: block;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.booking-info-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section {
  margin-bottom: 40px;
}
.form-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #ffd3f3;
  position: relative;
}
.form-section h3::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffd3f3 0%, #ffd3f3 100%);
  border-radius: 2px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group {
  margin-bottom: 24px;
  position: relative;
  transition: all 0.3s ease;
}
.form-group label {
  display: block;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}
.form-group.has-error .form-control {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}
.form-group.has-error .form-control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.2);
}
.form-group.has-success .form-control {
  border-color: #28a745;
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15);
}
.form-group.has-success .form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.2);
}
.form-error-message {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #dc3545;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: slideDown 0.3s ease;
}
.form .char-counter {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #6c757d;
  text-align: right;
  transition: color 0.3s ease;
}
.form .char-counter.warning {
  color: #dc3545;
  font-weight: 600;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  border-radius: 12px;
  font-weight: 400;
}
.form-control::placeholder {
  color: rgb(147.4356223176, 155.1802575107, 162.0643776824);
  font-weight: 400;
}
.form-control:focus {
  outline: none;
  border-color: #ffd3f3;
  box-shadow: 0 0 0 4px rgba(255, 211, 243, 0.15), 0 4px 12px rgba(255, 211, 243, 0.1);
  transform: translateY(-1px);
}
.form-control:hover:not(:focus) {
  border-color: hsl(316.3636363636, 100%, 101.3725490196%);
}
.form-control.is-invalid, .form-control.field-error {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}
.form-control.field-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15);
}
.date-time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.consultation-select,
.time-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffd3f3' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-right: 45px;
  cursor: pointer;
  appearance: none;
}
.consultation-select:hover,
.time-select:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffd3f3' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}
.consultation-select:focus,
.time-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffd3f3' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.6;
}
textarea.form-control:focus {
  min-height: 140px;
}

.btn-booking {
  width: 100%;
  padding: 18px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  color: #332e2e;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.btn-booking::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.btn-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 211, 243, 0.5), 0 4px 12px rgba(255, 211, 243, 0.3);
}
.btn-booking:hover::before {
  left: 100%;
}
.btn-booking:active {
  transform: translateY(-1px);
}
.btn-booking.loading {
  opacity: 0.8;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.btn-booking:hover .btn-icon {
  transform: scale(1.1);
}
.btn-pink {
  background: linear-gradient(135deg, #ffd3f3 0%, rgb(255, 226.3, 247.1727272727) 50%, #ffd3f3 100%) !important;
  -webkit-box-shadow: 0px 8px 25px rgba(255, 211, 243, 0.4) !important;
  -moz-box-shadow: 0px 8px 25px rgba(255, 211, 243, 0.4) !important;
  box-shadow: 0px 8px 25px rgba(255, 211, 243, 0.4) !important;
  border-radius: 14px !important;
}
.btn-pink:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 35px rgba(255, 211, 243, 0.6) !important;
}
.btn-pink:active {
  transform: translateY(-1px);
}
.btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, rgb(96.1802575107, 104.19527897, 111.3197424893) 100%);
  color: #ffffff;
  border-radius: 14px;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, rgb(96.1802575107, 104.19527897, 111.3197424893) 0%, rgb(84.3605150215, 91.3905579399, 97.6394849785) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

.info-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 211, 243, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ffd3f3 0%, #d9ffb6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}
.info-card:hover::before {
  opacity: 1;
}
.info-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  margin-top: 0;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 12px;
  position: relative;
}
.info-header h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ffd3f3 0%, #ffd3f3 100%);
}
.info-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
}
.info-text {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  font-weight: 400;
}
.info-text span {
  font-weight: 400;
}
.info-text strong {
  color: #2c3e50;
  font-weight: 600;
}

.modal {
  display: none;
  position: fixed !important;
  z-index: 99999 !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
  isolation: isolate;
}
.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 650px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 211, 243, 0.3);
  position: relative;
  z-index: 1;
}
.modal-header {
  background: linear-gradient(135deg, #ffd3f3 0%, rgb(255, 236.5, 249.9545454545) 100%);
  color: #332e2e;
  padding: 28px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 2px 10px rgba(255, 211, 243, 0.3);
}
.modal-header h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #332e2e;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-header h2::before {
  content: "✓";
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #332e2e;
}
.modal-body {
  padding: 35px;
  background: #ffffff;
}
.modal-footer {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  padding: 24px 35px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  border-top: 1px solid #e9ecef;
}
.modal-footer form {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.modal-footer .btn-booking {
  min-width: 200px;
}

.close {
  color: #332e2e;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  line-height: 1;
  border: 2px solid transparent;
}
.close:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) rotate(90deg) scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.close:active {
  transform: translateY(-50%) rotate(90deg) scale(0.95);
}
.close:focus {
  outline: 2px solid #ffd3f3;
  outline-offset: 2px;
}

.confirmation-preview {
  margin-bottom: 30px;
}
.confirmation-notice {
  background: linear-gradient(135deg, #e3f2fd 0%, rgb(236.52, 246.42, 253.68) 100%);
  border: 2px solid #bbdefb;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.1);
  position: relative;
  overflow: hidden;
}
.confirmation-notice::before {
  content: "ℹ️";
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-right: 4px;
}
.confirmation-notice .notice-text {
  flex: 1;
}
.confirmation-notice .notice-text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.preview-section {
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(255, 211, 243, 0.05) 0%, rgba(217, 255, 182, 0.05) 100%);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 211, 243, 0.2);
  transition: all 0.3s ease;
}
.preview-section:hover {
  border-color: rgba(255, 211, 243, 0.4);
  box-shadow: 0 4px 12px rgba(255, 211, 243, 0.1);
}
.preview-section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e9ecef;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.preview-section h3::before {
  content: "";
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #ffd3f3 0%, #d9ffb6 100%);
  border-radius: 2px;
}
.preview-section h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ffd3f3 0%, #ffd3f3 100%);
  border-radius: 2px;
}
.preview-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 211, 243, 0.2);
  transition: all 0.2s ease;
  position: relative;
}
.preview-item:hover {
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  margin: 0 -8px;
  padding-left: 20px;
  padding-right: 8px;
}
.preview-item:last-child {
  border-bottom: none;
}
.preview-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c3e50;
  min-width: 140px;
  flex-shrink: 0;
}
.preview-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #495057;
  text-align: left;
  word-break: break-word;
  flex: 1;
}

.notice-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1565c0;
  line-height: 1.6;
}
.notice-text strong {
  font-weight: 700;
  color: rgb(15.9718309859, 76.8169014085, 146.0281690141);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.g-recaptcha {
  margin: 20px 0;
}

.alert {
  padding: 15px 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .booking-container {
    padding: 20px 15px;
  }
  .booking-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .booking-header {
    padding: 30px 0 40px 0;
  }
  .booking-header h1 {
    font-size: 2.2rem;
  }
  .booking-header p {
    font-size: 1.1rem;
  }
  .booking-tabs {
    flex-direction: column;
    gap: 12px;
  }
  .booking-tabs .nav-link {
    width: 100%;
  }
  .booking-form-section {
    padding: 28px 20px;
    border-radius: 20px;
  }
  @keyframes shake {
    0%, 100% {
      transform: translateY(-50%) translateX(0);
    }
    25% {
      transform: translateY(-50%) translateX(-5px);
    }
    75% {
      transform: translateY(-50%) translateX(5px);
    }
  }
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: translateY(-50%) scale(0.8);
    }
    to {
      opacity: 1;
      transform: translateY(-50%) scale(1);
    }
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .form-section {
    margin-bottom: 32px;
  }
  .form-section h3 {
    font-size: 1.2rem;
  }
  .form-row, .form-date-time-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .date-time-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .info-card {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .modal-content {
    width: 95%;
    margin: 10% auto;
    border-radius: 20px;
  }
  .modal-header {
    padding: 22px 24px;
    border-radius: 20px 20px 0 0;
  }
  .modal-header h2 {
    font-size: 1.2rem;
  }
  .modal-body {
    padding: 24px;
  }
  .modal-footer {
    padding: 20px 24px;
    flex-direction: column;
  }
  .modal-footer .btn {
    width: 100%;
  }
  .preview-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .preview-label {
    min-width: auto;
    margin-bottom: 4px;
  }
  .preview-value {
    text-align: left;
    font-weight: 500;
    color: #495057;
    word-break: break-word;
  }
  .btn-booking {
    padding: 16px 24px;
    font-size: 1rem;
  }
}
.calendar-group,
.time-slots-group {
  margin-bottom: 32px;
}
.calendar-group label,
.time-slots-group label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  font-size: 1rem;
}

.calendar-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 211, 243, 0.2);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e9ecef;
}
.calendar-header .calendar-month-year {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}
.calendar-header .calendar-nav-btn {
  background: rgba(255, 211, 243, 0.2);
  border: 2px solid rgba(255, 211, 243, 0.3);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #2c3e50;
}
.calendar-header .calendar-nav-btn:hover {
  background: #ffd3f3;
  border-color: #ffd3f3;
  color: #332e2e;
  transform: scale(1.05);
}
.calendar-header .calendar-nav-btn:active {
  transform: scale(0.95);
}
.calendar-header .calendar-nav-btn:focus {
  outline: 2px solid #ffd3f3;
  outline-offset: 2px;
}
.calendar-header .calendar-nav-btn svg {
  width: 18px;
  height: 18px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.calendar-weekdays .calendar-weekday {
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: #6c757d;
  padding: 8px 4px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  border: 2px solid transparent;
  color: #2c3e50;
  position: relative;
}
.calendar-day:hover:not(.past):not(.empty) {
  background: rgba(255, 211, 243, 0.2);
  border-color: #ffd3f3;
  transform: scale(1.05);
}
.calendar-day.today {
  background: linear-gradient(135deg, #ffd3f3 0%, rgb(255, 236.5, 249.9545454545) 100%);
  color: #332e2e;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 211, 243, 0.4);
}
.calendar-day.selected {
  background: linear-gradient(135deg, #ffd3f3 0%, rgb(255, 226.3, 247.1727272727) 100%);
  color: #332e2e;
  font-weight: 700;
  border-color: #ffd3f3;
  box-shadow: 0 4px 12px rgba(255, 211, 243, 0.5);
  transform: scale(1.1);
}
.calendar-day.past {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f8f9fa;
}
.calendar-day.unavailable {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f8f9fa;
  position: relative;
}
.calendar-day.unavailable::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #6c757d;
  transform: translateY(-50%);
}
.calendar-day.unavailable:hover {
  transform: none;
  background: #f8f9fa;
  border-color: transparent;
}
.calendar-day.empty {
  visibility: hidden;
}
.calendar-day:focus {
  outline: 2px solid #ffd3f3;
  outline-offset: 2px;
}

.time-slots-container {
  min-height: 200px;
}

.time-slots-loading,
.time-slots-error,
.time-slots-empty,
.time-slots-placeholder {
  text-align: center;
  padding: 40px 20px;
  color: #6c757d;
  font-size: 0.95rem;
}
.time-slots-loading p,
.time-slots-error p,
.time-slots-empty p,
.time-slots-placeholder p {
  margin: 8px 0;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  padding: 8px 0;
}

.time-slot {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.time-slot::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 243, 0.3), transparent);
  transition: left 0.5s ease;
}
.time-slot:hover {
  border-color: #ffd3f3;
  background: rgba(255, 211, 243, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 211, 243, 0.3);
}
.time-slot:hover::before {
  left: 100%;
}
.time-slot.selected {
  background: linear-gradient(135deg, #ffd3f3 0%, rgb(255, 226.3, 247.1727272727) 100%);
  border-color: #ffd3f3;
  color: #332e2e;
  box-shadow: 0 4px 15px rgba(255, 211, 243, 0.5);
  transform: translateY(-2px) scale(1.05);
}
.time-slot:active {
  transform: translateY(0) scale(1);
}
.time-slot:focus {
  outline: 2px solid #ffd3f3;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .calendar-container {
    padding: 16px;
  }
  .calendar-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  .calendar-header .calendar-month-year {
    font-size: 1rem;
  }
  .calendar-header .calendar-nav-btn {
    width: 36px;
    height: 36px;
  }
  .calendar-weekdays,
  .calendar-days {
    gap: 6px;
  }
  .calendar-day {
    font-size: 0.85rem;
  }
  .time-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
  }
  .time-slot {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 4px solid;
  pointer-events: all;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.toast::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  opacity: 0.3;
}
.toast.show {
  opacity: 1;
  transform: translateX(0);
}
.toast.hide {
  opacity: 0;
  transform: translateX(400px);
}
.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.toast-content {
  flex: 1;
  min-width: 0;
}
.toast-message {
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.5;
  font-weight: 500;
}
.toast-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  border-radius: 4px;
  line-height: 1;
}
.toast-close:hover {
  color: #2c3e50;
  background: rgba(0, 0, 0, 0.05);
}
.toast-close:focus {
  outline: 2px solid #ffd3f3;
  outline-offset: 2px;
}
.toast-success {
  border-left-color: #28a745;
}
.toast-success .toast-icon {
  background-color: #28a745;
}
.toast-error {
  border-left-color: #dc3545;
}
.toast-error .toast-icon {
  background-color: #dc3545;
}
.toast-warning {
  border-left-color: #ffc107;
}
.toast-warning .toast-icon {
  background-color: #ffc107;
}
.toast-info {
  border-left-color: #17a2b8;
}
.toast-info .toast-icon {
  background-color: #17a2b8;
}
@media (max-width: 768px) {
  .toast {
    padding: 14px 16px;
  }
  .toast-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .toast-message {
    font-size: 0.9rem;
  }
  .toast-close {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
