/* Book btn */
.book-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;

  background-color: #00a7eb;
  color: #fff;
  font-weight: 600;
  text-decoration: none;

  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;

  width: 60px;
  height: 210px;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  /* Base shadow */
  box-shadow: 0 0 8px rgba(0, 167, 235, 0.6);
  animation: softGlow 2s infinite ease-in-out;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Hover Glow Boost */
.book-btn:hover {
  box-shadow:
    0 0 20px rgba(0, 167, 235, 1),
    0 0 30px rgba(0, 167, 235, 0.8);
  color: #fff;
  transform: translateY(-50%) rotate(180deg) scale(1.05);
  cursor: pointer;
}

/* Soft Pulse Glow Animation */
@keyframes softGlow {
  0% {
    box-shadow: 0 0 6px rgba(0, 167, 235, 0.5);
  }
  50% {
    box-shadow: 0 0 16px rgba(0, 167, 235, 0.9);
  }
  100% {
    box-shadow: 0 0 6px rgba(0, 167, 235, 0.5);
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .book-btn {
    width: 50px;
    height: 160px;
    font-size: 18px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .book-btn {
    width: 45px;
    height: 140px;
    font-size: 16px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .book-btn {
    width: 55px;
    height: 180px;
    font-size: 20px;
  }
}

.book-now-btn {
  background-color: #00a7eb; /* Bootstrap primary blue */
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 0 8px rgba(0, 167, 235, 0.6);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.book-now-btn:hover {
  box-shadow:
    0 0 20px rgba(0, 167, 235, 1),
    0 0 30px rgba(0, 167, 235, 0.8);
  transform: scale(1.05);
}

@keyframes softGlow {
  0% {
    box-shadow: 0 0 6px rgba(0, 167, 235, 0.5);
  }
  50% {
    box-shadow: 0 0 16px rgba(0, 167, 235, 0.9);
  }
  100% {
    box-shadow: 0 0 6px rgba(0, 167, 235, 0.5);
  }
}

.book-now-btn {
  animation: softGlow 2s infinite ease-in-out;
}

.text-custom-blue {
  color: #00a7eb;
}

.footer-link:hover {
  color: #fff;
  text-decoration: none;
}

/* Minimal Custom CSS */
.service-detail-img {
  border-radius: 20px;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.service-detail-img:hover img {
  transform: scale(1.05);
}

.feature-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li i {
  color: #ffc107;
  font-size: 18px;
}

.points-list {
  list-style: none;
  padding-left: 0;
}

.points-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.points-list li i {
  color: #28a745;
  font-size: 16px;
}

.sidebar-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 16px;
}

.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.btn-submit {
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  font-size: 20px;
}

@media (max-width: 768px) {
  .sidebar-sticky {
    position: relative !important;
    top: 0 !important;
  }
}

.booking-section {
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url("../images/shapes/booking-shape.png") no-repeat center; */
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

/* -------- Left Side Info Box -------- */
.booking-info-box {
  background: linear-gradient(135deg, #0a1922 0%, #0d2b3e 100%);
  border-radius: 20px;
  padding: 40px 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.booking-info-box::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
}

.booking-info-box .section-title__tagline {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2px;
}

.booking-info-box .section-title__title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}

.booking-info-box > p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.booking-feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.booking-feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.booking-feature-item .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-feature-item .icon i {
  font-size: 24px;
  color: #ffc107;
}

.booking-feature-item .text h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff;
}

.booking-feature-item .text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.booking-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-top: 20px;
}

.booking-phone i {
  font-size: 30px;
  color: #ffc107;
}

.booking-phone span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.booking-phone h3 {
  font-size: 20px;
  margin: 0;
}

.booking-phone h3 a {
  color: #fff;
  text-decoration: none;
}

/* -------- Right Side Form -------- */
.booking-form-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.booking-form-header {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  padding: 30px;
  text-align: center;
}

.booking-form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0a1922;
  margin-bottom: 10px;
}

.booking-form-header p {
  color: rgba(10, 25, 34, 0.7);
  margin: 0;
}

.booking-form {
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 8px;
  display: block;
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
}

.input-group:focus-within {
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.input-icon {
  padding: 12px 15px;
  color: #95a5a6;
  border-right: 1px solid #e0e6ed;
}

.input-group input,
.input-group select,
.input-group textarea {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  background: transparent;
  outline: none;
  font-family: inherit;
}

.input-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-footer {
  text-align: center;
  margin-top: 30px;
}

/* -------- Booking Submit Button -------- */
.booking-submit-btn {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #0a1922;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.booking-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
  color: #0a1922;
}

/* Form Note */
.form-note {
  margin-top: 15px;
  font-size: 12px;
  color: #95a5a6;
}

.form-note i {
  margin-right: 5px;
  color: #27ae60;
}

/* ================= Responsive ================= */

/* Tablet */
@media (max-width: 991px) {
  .booking-info-box {
    margin-bottom: 30px;
  }

  .booking-form {
    padding: 25px;
  }

  .booking-form-header h3 {
    font-size: 24px;
  }
}

/* Medium Screens */
@media (max-width: 768px) {
  .booking-info-box {
    padding: 30px 20px;
  }

  .booking-feature-item {
    padding: 8px;
  }

  .booking-submit-btn {
    padding: 12px 30px;
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .booking-submit-btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    /* Full width on mobile */
    justify-content: center;
  }

  .booking-form {
    padding: 20px;
  }

  .booking-form-header h3 {
    font-size: 20px;
  }

  .booking-info-box {
    padding: 20px 15px;
  }
}

/* Minimal Custom CSS */
.package-card {
  transition: all 0.4s ease;
  border: none;
  border-radius: 24px;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
  border: 2px solid #ffc107;
  position: relative;
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #000;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.package-header {
  padding: 30px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-price {
  font-size: 48px;
  font-weight: 800;
  color: #ffc107;
}

.package-price small {
  font-size: 16px;
  font-weight: 400;
  color: #6c757d;
}

.package-features {
  padding: 30px;
}

.package-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li i.fa-check-circle {
  color: #28a745;
  font-size: 18px;
}

.package-features li i.fa-times-circle {
  color: #dc3545;
  font-size: 18px;
}

.package-features li i.fa-star {
  color: #ffc107;
  font-size: 18px;
}

.btn-package {
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-package:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.price-toggle {
  background: #f8f9fa;
  border-radius: 50px;
  padding: 5px;
  display: inline-flex;
  gap: 10px;
}

.toggle-btn {
  padding: 8px 25px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.toggle-btn.active {
  background: #ffc107;
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .package-card.popular {
    transform: scale(1);
  }

  .package-price {
    font-size: 36px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.package-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.package-card:nth-child(1) {
  animation-delay: 0.1s;
}

.package-card:nth-child(2) {
  animation-delay: 0.2s;
}

.package-card:nth-child(3) {
  animation-delay: 0.3s;
}

.package-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Add to your CSS file */
.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

input.error, textarea.error, select.error {
    border-color: #ef4444 !important;
}

.contact-page__input-box {
    position: relative;
    margin-bottom: 20px;
}

.contact-page__input-box input,
.contact-page__input-box textarea {
    transition: border-color 0.3s ease;
}

.contact-page__input-box input:focus,
.contact-page__input-box textarea:focus {
    outline: none;
    border-color: #667eea;
}