@charset "UTF-8";
#main {
  padding-bottom: 50px;
  background: linear-gradient(to bottom, #fff, #f9f9f9);
}
#main .title {
  color: #E42014;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  position: relative;
}
#main .title:after {
  content: "";
  width: 80px;
  height: 3px;
  background-color: #E42014;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 576px) {
  #main .title {
    font-size: 20px;
  }
  #main .title:after {
    width: 60px;
    height: 2px;
  }
}
#main .summary {
  color: #E42014;
  font-size: 18px;
  margin-bottom: 30px;
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 576px) {
  #main .summary {
    margin-bottom: 20px;
    font-size: 13px;
  }
}
#main #booking-form {
  display: grid;
  grid-template-columns: 60% auto;
  gap: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  position: relative;
}
#main #booking-form:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #E42014, #2850A7);
  border-radius: 10px 10px 0 0;
}
@media (max-width: 768px) {
  #main #booking-form {
    grid-template-columns: 1fr;
    padding: 15px;
  }
}
#main #booking-form .left-content {
  flex: 1;
  min-width: 300px;
}
@media (max-width: 576px) {
  #main #booking-form .left-content {
    min-width: 100%;
  }
}
#main #booking-form .left-content .booking-section {
  margin-bottom: 25px;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 15px;
  border-left: 3px solid #E42014;
}
@media (max-width: 576px) {
  #main #booking-form .left-content .booking-section {
    padding: 12px;
  }
}
#main #booking-form .left-content .booking-section .booking-section_ {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 576px) {
  #main #booking-form .left-content .booking-section .booking-section_ {
    grid-template-columns: 1fr;
  }
}
#main #booking-form .left-content .booking-section h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}
#main #booking-form .left-content .booking-section h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #E42014;
  border-radius: 50%;
}
@media (max-width: 576px) {
  #main #booking-form .left-content .booking-section h4 {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
#main #booking-form .left-content .booking-section .form-group {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  #main #booking-form .left-content .booking-section .form-group {
    margin-bottom: 12px;
  }
}
#main #booking-form .left-content .booking-section .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-weight: 500;
  font-size: 14px;
}
#main #booking-form .left-content .booking-section .form-group .form-control {
  width: 100%;
  height: 40px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 14px;
  background-color: #fff;
  transition: all 0.2s ease;
}
#main #booking-form .left-content .booking-section .form-group .form-control::-moz-placeholder {
  color: #999;
}
#main #booking-form .left-content .booking-section .form-group .form-control::placeholder {
  color: #999;
}
#main #booking-form .left-content .booking-section .form-group .form-control:focus {
  border-color: #2850A7;
  outline: none;
  box-shadow: 0 0 0 2px rgba(40, 80, 167, 0.1);
}
#main #booking-form .left-content .booking-section .form-group textarea.form-control {
  height: auto;
  padding: 10px 15px;
}
#main #booking-form .left-content .custom-dropdown {
  position: relative;
  width: 100%;
}
#main #booking-form .left-content .dropdown-header {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 15px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  white-space: unset;
}
#main #booking-form .left-content .selected-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
#main #booking-form .left-content .dropdown-header:hover {
  border-color: #aaa;
}
#main #booking-form .left-content .dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ddd;
  border-radius: 0 0 4px 4px;
  z-index: 100;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#main #booking-form .left-content .dropdown-options.active {
  display: block;
}
#main #booking-form .left-content .dropdown-item {
  margin: 10px 15px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
#main #booking-form .left-content .dropdown-item:hover {
  background: #f5f5f5;
}
#main #booking-form .left-content .date-selector {
  background-color: rgba(40, 80, 167, 0.03) !important;
}
#main #booking-form .left-content .date-selector .date-list {
  margin-bottom: 15px;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
}
#main #booking-form .left-content .date-selector .date-list .owl-stage-outer {
  padding: 5px 0;
}
#main #booking-form .left-content .date-selector .date-list .date-item {
  text-align: center;
}
#main #booking-form .left-content .date-selector .date-list .date-item .date-btn {
  display: block;
  width: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  padding: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
  #main #booking-form .left-content .date-selector .date-list .date-item .date-btn {
    padding: 4px 2px;
  }
}
#main #booking-form .left-content .date-selector .date-list .date-item .date-btn.active {
  border-color: #E42014;
  background-color: rgba(228, 32, 20, 0.1);
  color: #E42014;
  box-shadow: 0 2px 8px rgba(228, 32, 20, 0.2);
}
#main #booking-form .left-content .date-selector .date-list .date-item .date-btn .day {
  font-size: 12px;
  color: #777;
}
@media (max-width: 576px) {
  #main #booking-form .left-content .date-selector .date-list .date-item .date-btn .day {
    font-size: 11px;
  }
}
#main #booking-form .left-content .date-selector .date-list .date-item .date-btn .date {
  font-weight: bold;
  font-size: 14px;
}
@media (max-width: 576px) {
  #main #booking-form .left-content .date-selector .date-list .date-item .date-btn .date {
    font-size: 13px;
  }
}
#main #booking-form .left-content .date-selector .date-list .date-item .date-btn.active .day {
  color: #E42014;
}
#main #booking-form .left-content .date-selector .date-list .date-item .date-btn:hover:not(.active) {
  background-color: rgba(245, 162, 158, 0.8705882353);
}
#main #booking-form .left-content .date-selector .date-list .owl-nav {
  position: relative;
}
#main #booking-form .left-content .date-selector .date-list .owl-nav .owl-prev,
#main #booking-form .left-content .date-selector .date-list .owl-nav .owl-next {
  position: absolute;
  top: 30%;
  transform: translateY(-140%);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
@media (max-width: 576px) {
  #main #booking-form .left-content .date-selector .date-list .owl-nav .owl-prev,
  #main #booking-form .left-content .date-selector .date-list .owl-nav .owl-next {
    width: 28px;
    height: 28px;
  }
}
#main #booking-form .left-content .date-selector .date-list .owl-nav .owl-prev:hover,
#main #booking-form .left-content .date-selector .date-list .owl-nav .owl-next:hover {
  background-color: #fff;
}
#main #booking-form .left-content .date-selector .date-list .owl-nav .owl-prev span,
#main #booking-form .left-content .date-selector .date-list .owl-nav .owl-next span {
  font-size: 20px;
  line-height: 1;
  display: block;
  color: #E42014;
}
@media (max-width: 576px) {
  #main #booking-form .left-content .date-selector .date-list .owl-nav .owl-prev span,
  #main #booking-form .left-content .date-selector .date-list .owl-nav .owl-next span {
    font-size: 18px;
  }
}
#main #booking-form .left-content .date-selector .date-list .owl-nav .owl-prev {
  left: -15px;
}
@media (max-width: 576px) {
  #main #booking-form .left-content .date-selector .date-list .owl-nav .owl-prev {
    left: -10px;
  }
}
#main #booking-form .left-content .date-selector .date-list .owl-nav .owl-next {
  right: -15px;
}
@media (max-width: 576px) {
  #main #booking-form .left-content .date-selector .date-list .owl-nav .owl-next {
    right: -10px;
  }
}
#main #booking-form .left-content .time-selector {
  background-image: linear-gradient(45deg, rgba(228, 32, 20, 0.05), rgba(40, 80, 167, 0.03)) !important;
}
#main #booking-form .left-content .time-selector .time-slots-container {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
  #main #booking-form .left-content .time-selector .time-slots-container {
    padding: 10px;
  }
}
#main #booking-form .left-content .time-selector .time-slots-container .time-period {
  margin-bottom: 15px;
  border-bottom: 1px dashed rgba(228, 32, 20, 0.3);
  padding-bottom: 10px;
}
#main #booking-form .left-content .time-selector .time-slots-container .time-period:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
#main #booking-form .left-content .time-selector .time-slots-container .time-period .period-label {
  color: #E42014;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  background-color: rgba(228, 32, 20, 0.05);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
}
@media (max-width: 576px) {
  #main #booking-form .left-content .time-selector .time-slots-container .time-period .period-label {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
#main #booking-form .left-content .time-selector .time-slots-container .time-period .time-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  #main #booking-form .left-content .time-selector .time-slots-container .time-period .time-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 576px) {
  #main #booking-form .left-content .time-selector .time-slots-container .time-period .time-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
@media (max-width: 375px) {
  #main #booking-form .left-content .time-selector .time-slots-container .time-period .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
#main #booking-form .left-content .time-selector .time-slots-container .time-period .time-grid .time-btn {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 5px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
  #main #booking-form .left-content .time-selector .time-slots-container .time-period .time-grid .time-btn {
    padding: 6px 3px;
    font-size: 13px;
  }
}
#main #booking-form .left-content .time-selector .time-slots-container .time-period .time-grid .time-btn.active {
  border-color: #E42014;
  background-color: #E42014;
  color: #fff;
  box-shadow: 0 2px 5px rgba(228, 32, 20, 0.3);
  transform: translateY(-2px);
}
#main #booking-form .left-content .time-selector .time-slots-container .time-period .time-grid .time-btn:hover:not(.active) {
  background-color: #E42014;
  color: #fff;
}
#main #booking-form .left-content .captcha-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
  #main #booking-form .left-content .captcha-wrapper {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 8px;
  }
}
#main #booking-form .left-content .captcha-wrapper .checkbox {
  margin-right: 10px;
}
#main #booking-form .left-content .captcha-wrapper .captcha-text {
  font-size: 13px;
  color: #666;
}
@media (max-width: 576px) {
  #main #booking-form .left-content .captcha-wrapper .captcha-text {
    font-size: 12px;
  }
}
#main #booking-form .right-content {
  flex: 1;
  min-width: 300px;
}
@media (max-width: 768px) {
  #main #booking-form .right-content {
    min-width: 100%;
  }
}
#main #booking-form .right-content .service-diagram {
  height: 100%;
  min-height: 400px;
  background-color: rgba(40, 80, 167, 0.03);
  border-radius: 8px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
#main #booking-form .right-content .service-diagram:before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background-color: rgba(40, 80, 167, 0.1);
  border-radius: 50%;
  z-index: 0;
}
#main #booking-form .right-content .service-diagram:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-color: rgba(228, 32, 20, 0.05);
  border-radius: 50%;
  z-index: 0;
}
@media (max-width: 576px) {
  #main #booking-form .right-content .service-diagram {
    min-height: 300px;
    padding: 15px;
  }
}
#main #booking-form .right-content .service-diagram .diagram-image {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
#main #booking-form .right-content .service-diagram .diagram-image .diagram-image-item {
  margin-top: 15px;
}
@media (max-width: 576px) {
  #main #booking-form .right-content .service-diagram .diagram-image {
    margin-bottom: 15px;
  }
}
#main #booking-form .right-content .service-diagram .diagram-image img {
  width: 100%;
  height: 140px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
#main #booking-form .right-content .service-diagram .note-area {
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: auto;
  max-height: 700px;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 576px) {
  #main #booking-form .right-content .service-diagram .note-area {
    padding: 12px;
    min-height: 300px;
  }
}
#main #booking-form .right-content .service-diagram .note-area .benefits-title,
#main #booking-form .right-content .service-diagram .note-area .slogan {
  color: #E42014;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  position: relative;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: rgba(228, 32, 20, 0.07);
  padding: 7px 5px;
  border-radius: 5px;
  border-left: 3px solid #E42014;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
#main #booking-form .right-content .service-diagram .note-area .benefits-title:after,
#main #booking-form .right-content .service-diagram .note-area .slogan:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #E42014;
}
@media (max-width: 576px) {
  #main #booking-form .right-content .service-diagram .note-area .benefits-title,
  #main #booking-form .right-content .service-diagram .note-area .slogan {
    font-size: 15px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
  }
  #main #booking-form .right-content .service-diagram .note-area .benefits-title:after,
  #main #booking-form .right-content .service-diagram .note-area .slogan:after {
    width: 30px;
  }
}
#main #booking-form .right-content .service-diagram .note-area .slogan {
  margin-top: 18px;
  padding: 8px 5px;
  background: linear-gradient(to right, rgba(228, 32, 20, 0.1), rgba(40, 80, 167, 0.1));
  border-left: 3px solid #2850A7;
}
#main #booking-form .right-content .service-diagram .note-area .benefits-list {
  padding-left: 10px;
  margin: 15px 0;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  list-style: none;
}
@media (max-width: 576px) {
  #main #booking-form .right-content .service-diagram .note-area .benefits-list {
    padding: 8px 8px 8px 20px;
    margin: 10px 0;
  }
}
#main #booking-form .right-content .service-diagram .note-area .benefits-list li {
  font-size: 14px;
  margin-bottom: 7px;
  position: relative;
  line-height: 1.5;
  padding-left: 22px;
}
@media (max-width: 576px) {
  #main #booking-form .right-content .service-diagram .note-area .benefits-list li {
    font-size: 13px;
    margin-bottom: 6px;
    padding-left: 18px;
  }
}
#main #booking-form .right-content .service-diagram .note-area .benefits-list li:last-child {
  margin-bottom: 0;
}
#main #booking-form .right-content .service-diagram .note-area .benefits-list li:before {
  content: "✓";
  color: #fff;
  background-color: #E42014;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 2px;
}
#main #booking-form .right-content .service-diagram .note-area .service-features {
  margin-top: 12px;
  padding-left: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  list-style: none;
}
@media (max-width: 576px) {
  #main #booking-form .right-content .service-diagram .note-area .service-features {
    margin-top: 10px;
    padding: 8px 8px 8px 20px;
  }
}
#main #booking-form .right-content .service-diagram .note-area .service-features li {
  font-size: 14px;
  margin-bottom: 7px;
  position: relative;
  line-height: 1.5;
  padding-left: 18px;
}
@media (max-width: 576px) {
  #main #booking-form .right-content .service-diagram .note-area .service-features li {
    font-size: 13px;
    margin-bottom: 6px;
    padding-left: 15px;
  }
}
#main #booking-form .right-content .service-diagram .note-area .service-features li:last-child {
  margin-bottom: 0;
}
#main #booking-form .right-content .service-diagram .note-area .service-features li:before {
  content: "•";
  color: #E42014;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: -2px;
}
#main #booking-form .right-content .service-diagram .note-area .service-features li strong {
  color: #E42014;
  font-weight: 700;
}
#main #booking-form .right-content .service-diagram .note-area .service-features li.warranty-highlight {
  margin-top: 12px;
  margin-left: -12px;
  padding: 8px;
  background-color: rgba(228, 32, 20, 0.07);
  border-radius: 5px;
  border-left: 3px solid #E42014;
  text-align: center;
  padding-left: 0;
}
#main #booking-form .right-content .service-diagram .note-area .service-features li.warranty-highlight:before {
  display: none;
}
#main #booking-form .right-content .service-diagram .note-area .service-features li.warranty-highlight a {
  color: #E42014;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 15px;
  transition: all 0.3s ease;
}
#main #booking-form .right-content .service-diagram .note-area .service-features li.warranty-highlight a:hover {
  color: #b51910;
  text-decoration: underline;
}
#main #booking-form .right-content .service-diagram .note-area .service-features li.warranty-highlight a:after {
  content: "→";
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.2s ease;
}
#main #booking-form .right-content .service-diagram .note-area .service-features li.warranty-highlight a:hover:after {
  transform: translateX(3px);
}
#main .submit__ {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
  #main .submit__ {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }
}
#main .book {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 576px) {
  #main .book {
    justify-content: center;
    flex-direction: column;
  }
}
#main .book .btn_back {
  border: 1px solid #E42014 !important;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  border: none;
  min-width: 150px;
  margin-right: 10px;
  background: linear-gradient(to right, transparent, rgba(228, 32, 20, 0.05));
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  #main .book .btn_back {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    min-width: auto;
    padding: 10px 15px;
    font-size: 14px;
  }
}
#main .book .btn_back a {
  color: #E42014;
  transition: all 0.3s ease;
}
#main .book .btn_back:hover {
  background-color: #E42014;
  box-shadow: 0 3px 8px rgba(228, 32, 20, 0.3);
  transform: translateY(-2px);
}
#main .book .btn_back:hover a {
  color: #fff;
}
@media (max-width: 576px) {
  #main .book .box-submit {
    width: 100%;
  }
}
#main .book .box-submit .btn-submit {
  background-color: #E42014;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  border: none;
  min-width: 150px;
  box-shadow: 0 3px 6px rgba(228, 32, 20, 0.2);
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  #main .book .box-submit .btn-submit {
    width: 100%;
    min-width: auto;
    padding: 10px 15px;
    font-size: 14px;
  }
}
#main .book .box-submit .btn-submit:hover {
  background-color: #b51910;
  box-shadow: 0 5px 12px rgba(228, 32, 20, 0.4);
  transform: translateY(-2px);
}
#main .customer-gallery {
  margin-top: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}
#main .customer-gallery:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(40, 80, 167, 0.03), rgba(228, 32, 20, 0.03));
  border-radius: 10px;
  z-index: -1;
}
@media (max-width: 576px) {
  #main .customer-gallery {
    margin-top: 40px;
    padding: 15px;
  }
}
#main .customer-gallery h3 {
  text-align: center;
  color: #2850A7;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}
#main .customer-gallery h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #E42014, #2850A7);
}
@media (max-width: 576px) {
  #main .customer-gallery h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  #main .customer-gallery h3:after {
    width: 40px;
  }
}
#main .customer-gallery h3:before {
  content: "✦";
  margin-right: 10px;
  color: #E42014;
}
#main .customer-gallery h3:after {
  content: "✦";
  margin-left: 10px;
  color: #E42014;
}
#main .customer-gallery .gallery-title {
  text-align: center;
  color: #2850A7;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  #main .customer-gallery .gallery-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
#main .customer-gallery .gallery-images .gallery-item {
  flex: 0 0 calc(20% - 12px);
  height: 150px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  #main .customer-gallery .gallery-images .gallery-item {
    flex: 0 0 calc(33.333% - 10px);
  }
}
@media (max-width: 576px) {
  #main .customer-gallery .gallery-images .gallery-item {
    flex: 0 0 calc(50% - 7px);
    height: 120px;
  }
}
#main .customer-gallery .gallery-images .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
#main .customer-gallery .gallery-images .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
#main .customer-gallery .gallery-images .gallery-item img:hover {
  transform: scale(1.05);
}
#main .customer-gallery .owl-nav .owl-prev,
#main .customer-gallery .owl-nav .owl-next {
  position: absolute;
  top: 60%;
  transform: translateY(-140%);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  #main .customer-gallery .owl-nav .owl-prev,
  #main .customer-gallery .owl-nav .owl-next {
    width: 28px;
    height: 28px;
    top: 50%;
  }
}
#main .customer-gallery .owl-nav .owl-prev:hover,
#main .customer-gallery .owl-nav .owl-next:hover {
  background-color: #fff;
  transform: translateY(-140%) scale(1.1);
}
#main .customer-gallery .owl-nav .owl-prev span,
#main .customer-gallery .owl-nav .owl-next span {
  font-size: 20px;
  line-height: 1;
  display: block;
  color: #E42014;
}
@media (max-width: 576px) {
  #main .customer-gallery .owl-nav .owl-prev span,
  #main .customer-gallery .owl-nav .owl-next span {
    font-size: 18px;
  }
}
#main .customer-gallery .owl-nav .owl-prev {
  left: -15px;
}
@media (max-width: 576px) {
  #main .customer-gallery .owl-nav .owl-prev {
    left: -10px;
  }
}
#main .customer-gallery .owl-nav .owl-next {
  right: -15px;
}
@media (max-width: 576px) {
  #main .customer-gallery .owl-nav .owl-next {
    right: -10px;
  }
}

@media (max-width: 576px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

@media (max-width: 576px) {
  .fixed-contact {
    bottom: 15px;
    right: 15px;
  }
  .fixed-contact a {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  .fixed-contact a:hover {
    transform: scale(1.1);
  }
}

body {
  background-color: #f9f9f9;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e42014' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}/*# sourceMappingURL=booking_fix.css.map */