/* ================================
   Brand Colors
================================ */
/* ================================
   Gray Scale
================================ */
/* ================================
   Status Colors
================================ */
/* ================================
   UI Colors
================================ */
/* ================================
   Typography
================================ */
/* ================================
   Radius
================================ */
/* ================================
   Shadows
================================ */
/* ================================
   Transitions
================================ */
/* ================================
   SVG / Icon Filters
================================ */
a, span, ul, li, strong, button, p, b {
  font-size: clamp(12px, 1.6vw, 16px);
  list-style-type: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}

.course-detail-section {
  font-family: "Outfit", sans-serif;
}
.course-detail-section .course-info-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #eee;
}
.course-detail-section .course-info-card .course-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.course-detail-section .course-info-card .course-image-wrapper .course-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.course-detail-section .course-info-card .course-content-body {
  padding: 30px;
}
.course-detail-section .course-info-card .course-content-body .course-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}
.course-detail-section .course-info-card .course-content-body .course-header .title-area .course-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}
.course-detail-section .course-info-card .course-content-body .course-header .title-area .course-category {
  font-size: 15px;
  color: #666;
  background: #f8f9fa;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  border: 1px solid #e9ecef;
}
.course-detail-section .course-info-card .course-content-body .course-header .price-area {
  text-align: right;
}
.course-detail-section .course-info-card .course-content-body .course-header .price-area .current-price {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  display: block;
}
.course-detail-section .course-info-card .course-content-body .course-header .price-area .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
  margin-right: 10px;
}
.course-detail-section .course-info-card .course-content-body .course-header .price-area .discount-badge {
  background: #d4edda;
  color: #155724;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
}
.course-detail-section .course-info-card .course-content-body .course-header .price-area .price-unit {
  font-size: 14px;
  color: #777;
}
.course-detail-section .course-info-card .course-content-body .course-header .price-area .get-price-btn-badge {
  display: inline-block;
  margin-top: 5px;
  background: #e3f2fd;
  color: #0d47a1;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #bbdefb;
}
.course-detail-section .course-info-card .course-content-body .course-header .price-area .get-price-btn-badge:hover {
  background: #bbdefb;
}
.course-detail-section .course-info-card .course-content-body .course-highlights {
  margin-bottom: 25px;
}
.course-detail-section .course-info-card .course-content-body .course-highlights ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}
.course-detail-section .course-info-card .course-content-body .course-highlights ul li {
  position: relative;
  padding-left: 25px;
  color: #444;
  font-size: 16px;
  line-height: 1.5;
}
.course-detail-section .course-info-card .course-content-body .course-highlights ul li:before {
  content: "\F00C";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #27ae60;
}
.course-detail-section .course-info-card .course-content-body .course-description-text {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.course-detail-section .course-info-card .course-content-body .action-buttons-group {
  display: flex;
  gap: 15px;
}
.course-detail-section .course-info-card .course-content-body .action-buttons-group .btn-action {
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.course-detail-section .course-info-card .course-content-body .action-buttons-group .btn-action.btn-primary-custom {
  background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 176, 155, 0.4);
}
.course-detail-section .course-info-card .course-content-body .action-buttons-group .btn-action.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 176, 155, 0.5);
}
.course-detail-section .course-info-card .course-content-body .action-buttons-group .btn-action.btn-secondary-custom {
  background: #fff;
  color: #333;
  border: 2px solid #eee;
}
.course-detail-section .course-info-card .course-content-body .action-buttons-group .btn-action.btn-secondary-custom:hover {
  border-color: #00b09b;
  color: #00b09b;
  background: #f9f9f9;
}
.course-detail-section .teacher-section {
  margin-top: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.course-detail-section .teacher-section h3.section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
  display: inline-block;
}

.accommodation-full-section .accommodation-card .acc-gallery-wrapper {
  width: 100%;
  margin-bottom: 25px;
  overflow: hidden;
}
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper {
  width: 100%;
  padding-bottom: 40px;
}
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-slide .gallery-item,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-slide .gallery-item,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-slide .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-slide .gallery-item img,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-slide .gallery-item img,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-slide .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-slide .gallery-item img:hover,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-slide .gallery-item img:hover,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-slide .gallery-item img:hover {
  transform: scale(1.05);
}
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-button-next,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-button-prev,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-button-next,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-button-prev,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-button-next,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-button-prev {
  color: #333 !important;
  background-color: #ffffff !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 20;
}
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-button-next:after,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-button-prev:after,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-button-next:after,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-button-prev:after,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-button-next:after,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-button-next:hover,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-button-prev:hover,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-button-next:hover,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-button-prev:hover,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-button-next:hover,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-button-prev:hover {
  background-color: #333 !important;
  color: #ffffff !important;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-pagination,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-pagination,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-pagination {
  bottom: 0 !important;
  padding-bottom: 5px;
}
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-pagination-bullet,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-pagination-bullet,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .food-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .room-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active,
.accommodation-full-section .accommodation-card .acc-gallery-wrapper .accommodation-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #00b09b !important;
  width: 30px;
  border-radius: 5px;
}
.accommodation-full-section .accommodation-card .video-tour-section {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.accommodation-full-section .accommodation-card .video-tour-section .sub-title {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: 15px;
  margin-bottom: 8px;
  border-left: 3px solid #00b09b;
  padding-left: 10px;
}
.accommodation-full-section .accommodation-card .video-tour-section .video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  height: auto;
  flex: 0 0 calc(50% - 8px);
  max-width: 576px;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}
@media (max-width: 767px) {
  .accommodation-full-section .accommodation-card .video-tour-section .video-wrapper {
    flex: 0 0 100%;
  }
}
.accommodation-full-section .accommodation-card .video-tour-section .video-wrapper video,
.accommodation-full-section .accommodation-card .video-tour-section .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.accommodation-full-section .accommodation-card .acc-location {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}
.accommodation-full-section .accommodation-card .acc-location i {
  color: #e74c3c;
  margin-right: 5px;
}
.accommodation-full-section .accommodation-card .acc-details {
  flex: 1;
}
.accommodation-full-section .accommodation-card .acc-details h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}
.accommodation-full-section .accommodation-card .acc-details .acc-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}
.accommodation-full-section .accommodation-card .acc-details .acc-description p {
  margin-bottom: 10px;
}
.accommodation-full-section .accommodation-card .acc-details .acc-description ul,
.accommodation-full-section .accommodation-card .acc-details .acc-description ol {
  margin-left: 20px;
  margin-bottom: 10px;
}
.accommodation-full-section .accommodation-card .facilities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.accommodation-full-section .accommodation-card .facilities-list span {
  background: #f8f9fa;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
  border: 1px solid #e9ecef;
}
.accommodation-full-section .accommodation-card .facilities-list span i {
  color: #27ae60;
  margin-right: 5px;
}

.teacher-section .teacher-new-card .photo-wrap {
  position: relative;
}
.teacher-section .teacher-new-card .photo-wrap img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teacher-section .teacher-new-card .photo-wrap .social-links {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  gap: 8px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.teacher-section .teacher-new-card .photo-wrap .social-links a {
  color: #000000;
  background-color: #ffffff;
  border: none;
  font-size: 16px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.teacher-section .teacher-new-card .photo-wrap .social-links a i {
  font-size: 18px;
  color: #2f443b;
  transition: 0.3s ease-in-out;
}
.teacher-section .teacher-new-card .photo-wrap .social-links a:nth-child(1) {
  transform: translateY(10px);
}
.teacher-section .teacher-new-card .photo-wrap .social-links a:nth-child(2) {
  transform: translateY(15px);
}
.teacher-section .teacher-new-card .photo-wrap .social-links a:nth-child(3) {
  transform: translateY(20px);
}
.teacher-section .teacher-new-card .photo-wrap .social-links a:nth-child(4) {
  transform: translateY(25px);
}
.teacher-section .teacher-new-card .photo-wrap .social-links a:nth-child(5) {
  transform: translateY(30px);
}
.teacher-section .teacher-new-card .photo-wrap .social-links a:nth-child(6) {
  transform: translateY(35px);
}
.teacher-section .teacher-new-card .photo-wrap .social-links a:hover {
  background-color: #2f443b;
  color: #ffffff;
  transition: 0.3s ease-in-out;
}
.teacher-section .teacher-new-card .photo-wrap .social-links a:hover i {
  color: #ffffff;
  transition: 0.3s ease-in-out;
}
.teacher-section .teacher-new-card .card-content {
  padding: 10px 0;
}
.teacher-section .teacher-new-card .card-content .teacher-name {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  text-transform: capitalize;
  font-weight: 600;
  display: block;
  color: #2f443b;
}
.teacher-section .teacher-new-card .card-content .teacher-designation {
  font-size: clamp(14px, 1.6vw, 16px);
  text-transform: capitalize;
  font-weight: 400;
  display: block;
  color: #94a3b8;
}
.teacher-section .teacher-new-card:hover {
  cursor: pointer;
}
.teacher-section .teacher-new-card:hover .photo-wrap .social-links {
  visibility: visible;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.teacher-section .teacher-new-card:hover .photo-wrap .social-links a {
  transform: translateY(0) !important;
}
.teacher-section .btn-wrapper {
  margin-top: clamp(10px, 1.5vw, 16px);
  text-align: center;
}

.gallery-container {
  width: 100%;
  margin: 0 auto;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}
.gallery-container .gallery-wrapper .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 150px;
  gap: 15px;
  width: 100% !important;
  transform: none !important;
}
.gallery-container .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100% !important;
  margin-right: 0 !important;
}
.gallery-container .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (min-width: 768px) {
  .gallery-container .gallery-item.big {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 4;
    grid-column-end: 3;
  }
  .gallery-container .gallery-item:nth-child(2) {
    grid-row-start: 1;
    grid-column-start: 3;
    grid-row-end: 3;
    grid-column-end: 5;
  }
}
.gallery-container .gallery-item .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e65100;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  z-index: 10;
  font-weight: 600;
}
.gallery-container .gallery-item .view-all {
  position: absolute;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border-radius: 8px;
  border: 2px solid #fff;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-container .gallery-item .view-all:hover {
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .gallery-container .gallery-wrapper {
    overflow: hidden;
    border-radius: 10px;
  }
  .gallery-container .gallery-item {
    border-radius: 0 !important;
    margin-right: 0 !important;
    height: 280px;
  }
  .gallery-container .gallery-item img {
    border-radius: 0 !important;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .gallery-container .gallery-item .badge {
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 12px;
  }
  .gallery-container .gallery-item .view-all {
    bottom: 12px;
    right: 12px;
    padding: 8px 16px;
    font-size: 13px;
  }
  .gallery-container .gallery-grid.swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: 100% !important;
  }
  .gallery-container .gallery-item.swiper-slide {
    width: 100% !important;
    flex-shrink: 0 !important;
  }
}

.course-detail-section .course-header {
  margin-bottom: 1rem;
}
.course-detail-section .course-header .service-heading {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  color: #2f443b;
  margin-bottom: 1rem;
}
.course-detail-section .course-header .course-category {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 70, 72, 0.08);
  color: #2f443b;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid #d9e0ff;
  gap: 6px;
}
.course-detail-section .course-header .course-category i {
  font-size: inherit;
  color: #2f443b;
}
.course-detail-section .course-detail-card .course-description {
  padding: 0;
}

.schedule-section .schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}
.schedule-section .time-box {
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.schedule-section .time-box:hover {
  border-color: rgba(47, 68, 59, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.schedule-section .time-box:hover .time-badge {
  background: #2f443b;
  color: #ffffff;
}
.schedule-section .time-box:hover .time-badge i {
  color: #ffffff;
}
.schedule-section .time-box .time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(47, 68, 59, 0.08);
  color: #2f443b;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  flex-shrink: 0;
}
.schedule-section .time-box .time-badge i {
  font-size: 13px;
  color: #2f443b;
  transition: 0.3s ease-in-out;
}
.schedule-section .time-box .activity {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}
.schedule-section .notes {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(47, 68, 59, 0.03);
  border-radius: 6px;
  font-size: 13px;
  color: #586880;
  border-left: 3px solid #2f443b;
  font-style: italic;
}
.schedule-section .notes b {
  color: #2f443b;
  margin-right: 4px;
}

@media (max-width: 768px) {
  .schedule-section .schedule-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .schedule-section .time-box {
    padding: 8px 12px;
  }
}
.booking-sidebar {
  position: sticky;
  top: 90px;
}

.booking-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}
.booking-card__header {
  background: #2f443b;
  padding: 16px 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}
.booking-card__from {
  font-size: 13px;
  margin: 0;
  opacity: 0.8;
}
.booking-card__from span {
  font-size: 18px;
  font-weight: 700;
  opacity: 1;
}

.booking-form {
  padding: 16px 20px 20px;
}
.booking-form__group {
  margin-bottom: 14px;
}
.booking-form__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
}
.booking-form__input, .booking-form__textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 13px;
  color: #1e293b;
  transition: border-color 0.2s;
  background: #ffffff;
  font-family: inherit;
}
.booking-form__input:focus, .booking-form__textarea:focus {
  outline: none;
  border-color: #2f443b;
  box-shadow: 0 0 0 3px rgba(47, 68, 59, 0.08);
}
.booking-form__input::-moz-placeholder, .booking-form__textarea::-moz-placeholder {
  color: #94a3b8;
}
.booking-form__input::placeholder, .booking-form__textarea::placeholder {
  color: #94a3b8;
}
.booking-form__phone-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.booking-form__phone-wrap:focus-within {
  border-color: #2f443b;
  box-shadow: 0 0 0 3px rgba(47, 68, 59, 0.08);
}
.booking-form__phone-prefix {
  padding: 8px 10px;
  background: #f1f5f9;
  color: #586880;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid #e2e8f0;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.booking-form__input--phone {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex: 1;
}
.booking-form__input--phone:focus {
  box-shadow: none !important;
}
.booking-form__textarea {
  resize: vertical;
  min-height: 60px;
}
.booking-form__submit {
  width: 100%;
  padding: 11px;
  background: #2f443b;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.booking-form__submit:hover {
  background: #1e2d26;
}
.booking-form__submit:active {
  transform: scale(0.98);
}
.booking-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.booking-form__note {
  margin: 12px 0 0;
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  line-height: 1.4;
}
.booking-form__note i {
  color: #2f443b;
  margin-right: 3px;
}

.room-select {
  position: relative;
}
.room-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s;
}
.room-select__trigger:hover {
  border-color: rgba(47, 68, 59, 0.3);
}
.room-select.open .room-select__trigger {
  border-color: #2f443b;
  border-radius: 6px 6px 0 0;
}
.room-select__value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}
.room-select__name {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.room-select__price {
  font-size: 13px;
  font-weight: 700;
  color: #2f443b;
  margin-right: 8px;
}
.room-select__price s {
  color: #94a3b8;
  font-weight: 400;
  font-size: 11px;
  margin-right: 4px;
}
.room-select__arrow {
  font-size: 11px;
  color: #64748b;
  transition: transform 0.2s;
}
.room-select.open .room-select__arrow {
  transform: rotate(180deg);
}
.room-select__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #2f443b;
  border-top: none;
  border-radius: 0 0 6px 6px;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
}
.room-select.open .room-select__dropdown {
  display: block;
}
.room-select__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  cursor: pointer;
  transition: background 0.1s;
}
.room-select__option:hover {
  background: rgba(47, 68, 59, 0.04);
}
.room-select__option.active {
  background: rgba(47, 68, 59, 0.08);
}
.room-select__option-name {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.room-select__option-price {
  font-size: 13px;
  font-weight: 700;
  color: #2f443b;
}
.room-select__option-price s {
  color: #94a3b8;
  font-weight: 400;
  font-size: 11px;
  margin-right: 4px;
}

@media (max-width: 991px) {
  .booking-sidebar {
    position: static;
    margin-top: 24px;
  }
}