/* =========================================
   HIRE THERAPIST - HOMEPAGE SECTION
   ========================================= */

ul#menu-secondary_top_menu {
  border-radius: 15px;
  padding: 0 30px;
  background: rgb(92, 169, 88);
  background: linear-gradient(90deg, rgba(92, 169, 88, 1) 0%, rgba(120, 221, 115, 1) 100%);
}

body.scrolled ul#menu-secondary_top_menu {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.hire-therapist-section {
  padding: 40px 0 20px;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.hire-therapist-section .hire-section-title {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 600;
  color: #4a4a4a;
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.hire-cards-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.hire-card {
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 20px 24px;
  min-width: 240px;
  flex: 1;
  max-width: 290px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
}

.hire-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Ayurveda Male Card */
.hire-card.ayurveda-male {
  background-color: #ebf3fb;
  border-color: #d4e5f7;
}

.hire-card.ayurveda-male .hire-card-icon {
  background-color: #d4e5f7;
  color: #1a4a60;
}

.hire-card.ayurveda-male .card-label {
  color: #1a4a60;
}

/* Ayurveda Female Card */
.hire-card.ayurveda-female {
  background-color: #faf0fb;
  border-color: #f0d5f5;
}

.hire-card.ayurveda-female .hire-card-icon {
  background-color: #f0d5f5;
  color: #7c3d7c;
}

.hire-card.ayurveda-female .card-label {
  color: #7c3d7c;
}

/* Physio Male & Female Cards */
.hire-card.physio-card {
  background-color: #fcf4eb;
  border-color: #f6e3cf;
}

.hire-card.physio-card .hire-card-icon {
  background-color: #f6e3cf;
  color: #b56f3f;
}

.hire-card.physio-card .card-label {
  color: #b56f3f;
}

.hire-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 18px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.hire-card:hover .hire-card-icon {
  transform: scale(1.05);
}

.hire-card-icon svg {
  width: 26px;
  height: 26px;
}

.hire-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.hire-card-text {
  flex: 1;
}

.hire-card-text .card-label {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  display: block;
}

.hire-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 10px;
  transition: all 0.3s ease;
  color: #8a95a3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.hire-card:hover .hire-card-arrow {
  transform: translateX(2px);
}

/* =========================================
   HIRE THERAPIST DETAILS PAGE
   ========================================= */

.hire-therapist-page {
  padding-top: 161px;
  padding-bottom: 60px;
  min-height: 100vh;
  background: #f5f7fa;
}

.hire-therapist-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page Header */
.hire-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hire-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a2e44;
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none !important;
  transition: color 0.2s;
}

.hire-back-btn:hover {
  color: #5eab5a;
  text-decoration: none !important;
}

.hire-back-btn svg {
  width: 20px;
  height: 20px;
}

.hire-mybookings-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 2px solid #1a2e44;
  border-radius: 25px;
  color: #1a2e44;
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  background: #fff;
}

.hire-mybookings-btn:hover {
  background: #1a2e44;
  color: #fff;
  text-decoration: none !important;
}

.hire-mybookings-btn svg {
  width: 18px;
  height: 18px;
}

/* Hero Banner */
.hire-hero-banner {
  background: linear-gradient(135deg, #1a2e44 0%, #2d4a6a 100%);
  border-radius: 20px;
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}

.hire-hero-banner::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  background: rgba(94, 171, 90, 0.12);
  border-radius: 50%;
}

.hire-hero-icon {
  width: 48px;
  height: 48px;
  background: rgba(94, 171, 90, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hire-hero-icon svg {
  width: 24px;
  height: 24px;
  color: #5eab5a;
}

.hire-hero-banner h1 {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}

.hire-hero-banner p {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 400;
}

/* Hiring Charges Card */
.hire-charges-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.hire-charges-card h2 {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 20px;
  color: #5eab5a;
  margin: 0 0 16px;
}

.hire-charges-inner {
  border: 1.5px solid #e8ecf1;
  border-radius: 14px;
  padding: 20px;
}

.hire-charges-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hire-charges-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hire-charges-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e8f4e8 0%, #d4ecd4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5eab5a;
}

.hire-charges-icon svg {
  width: 20px;
  height: 20px;
}

.hire-charges-label {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 600;
  font-size: 17px;
  color: #1a2e44;
}

.hire-charges-price {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 24px;
  color: #5eab5a;
}

.hire-charges-validity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0f2f5;
  color: #8a95a3;
  font-family: 'Baloo Paaji 2', cursive !important;
  font-size: 14px;
}

.hire-charges-validity svg {
  width: 16px;
  height: 16px;
}

/* Terms & Conditions */
.hire-terms-section {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.hire-terms-section h2 {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 20px;
  color: #5eab5a;
  margin: 0 0 20px;
}

.hire-terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hire-terms-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f2f5;
  font-family: 'Baloo Paaji 2', cursive !important;
  font-size: 15px;
  color: #3a4a5c;
  line-height: 1.5;
}

.hire-terms-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hire-terms-list li:first-child {
  padding-top: 0;
}

.hire-term-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5eab5a 0%, #78dd73 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hire-term-check svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

/* Hire CTA */
.hire-cta-bar {
  background: linear-gradient(135deg, #1a2e44 0%, #2d4a6a 100%);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  border: none;
  width: 100%;
}

.hire-cta-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 46, 68, 0.3);
}

.hire-cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hire-cta-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hire-cta-icon svg {
  width: 22px;
  height: 22px;
}

.hire-cta-text h3 {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin: 0 0 2px;
}

.hire-cta-text p {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.hire-cta-arrow {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.hire-cta-bar:hover .hire-cta-arrow {
  transform: translateX(4px);
}

.hire-cta-arrow svg {
  width: 18px;
  height: 18px;
}

/* Disclaimer */
.hire-disclaimer {
  background: #fff8f0;
  border: 1.5px solid #fde4d0;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.hire-disclaimer-icon {
  flex-shrink: 0;
  color: #e8864a;
}

.hire-disclaimer-icon svg {
  width: 20px;
  height: 20px;
}

.hire-disclaimer p {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-size: 14px;
  color: #c17530;
  margin: 0;
  line-height: 1.5;
}

/* =========================================
   PAYMENT CONFIRMATION MODAL
   ========================================= */

.hire-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999999;
  display: none;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}

.hire-modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hire-modal {
  background: #fff;
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 500px;
  padding: 0;
  animation: slideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.hire-modal-header {
  background: linear-gradient(135deg, #1a2e44 0%, #2d4a6a 100%);
  border-radius: 24px 24px 0 0;
  padding: 30px 24px 24px;
  text-align: center;
}

.hire-modal-header-icon {
  width: 56px;
  height: 56px;
  background: rgba(94, 171, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.hire-modal-header-icon svg {
  width: 28px;
  height: 28px;
  color: #78dd73;
}

.hire-modal-header h2 {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 0 0 4px;
}

.hire-modal-header p {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Modal Body */
.hire-modal-body {
  padding: 24px;
}

.hire-modal-detail-card {
  background: #fff;
  border: 1.5px solid #e8ecf1;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.hire-modal-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f2f5;
}

.hire-modal-detail-row:last-child {
  border-bottom: none;
}

.hire-modal-detail-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hire-modal-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hire-modal-detail-icon.therapy-icon {
  background: linear-gradient(135deg, #e8f4e8 0%, #d4ecd4 100%);
  color: #5eab5a;
}

.hire-modal-detail-icon.therapist-icon {
  background: linear-gradient(135deg, #e8f0f8 0%, #d4e4f4 100%);
  color: #4a8fd4;
}

.hire-modal-detail-icon.duration-icon {
  background: linear-gradient(135deg, #f0e8f8 0%, #e4d4f4 100%);
  color: #8a5fd4;
}

.hire-modal-detail-icon.validity-icon {
  background: linear-gradient(135deg, #e8f4f0 0%, #d4ece8 100%);
  color: #4ab89a;
}

.hire-modal-detail-icon.amount-icon {
  background: linear-gradient(135deg, #fef0e8 0%, #fde4d4 100%);
  color: #e8864a;
}

.hire-modal-detail-icon svg {
  width: 18px;
  height: 18px;
}

.hire-modal-detail-label {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-size: 15px;
  color: #8a95a3;
  font-weight: 500;
}

.hire-modal-detail-value {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-size: 16px;
  color: #1a2e44;
  font-weight: 700;
}

.hire-modal-detail-value.amount {
  color: #e8864a;
  font-size: 18px;
}

/* Modal Actions */
.hire-modal-actions {
  display: flex;
  gap: 12px;
  padding: 0 24px 28px;
}

.hire-modal-cancel {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #e8ecf1;
  border-radius: 14px;
  background: #fff;
  color: #5eab5a;
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hire-modal-cancel:hover {
  border-color: #5eab5a;
  background: #f0f8f0;
}

.hire-modal-pay {
  flex: 2;
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a2e44 0%, #2d4a6a 100%);
  color: #fff;
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hire-modal-pay:hover {
  box-shadow: 0 6px 20px rgba(26, 46, 68, 0.35);
  transform: translateY(-1px);
}

.hire-modal-pay svg {
  width: 20px;
  height: 20px;
}

/* =========================================
   BOOKINGS HISTORY PAGE
   ========================================= */

.bookings-history-page {
  padding-top: 161px;
  padding-bottom: 60px;
  min-height: 100vh;
  background: #f5f7fa;
}

.bookings-history-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.bookings-history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.bookings-history-header h1 {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 28px;
  color: #1a2e44;
  margin: 0;
}

/* Tabs */
.bookings-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.bookings-tab {
  padding: 10px 22px;
  border-radius: 25px;
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid #e8ecf1;
  background: #fff;
  color: #8a95a3;
}

.bookings-tab:hover {
  border-color: #5eab5a;
  color: #5eab5a;
}

.bookings-tab.active {
  background: linear-gradient(135deg, #5eab5a 0%, #78dd73 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(94, 171, 90, 0.3);
}

/* Tab Content */
.bookings-tab-content {
  display: none;
}

.bookings-tab-content.active {
  display: block;
  animation: fadeInTab 0.3s ease;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Booking Card */
.booking-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #5eab5a;
  transition: all 0.3s ease;
}

.booking-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.booking-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.booking-card-type {
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-card-type-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f4e8 0%, #d4ecd4 100%);
  color: #5eab5a;
}

.booking-card-type-icon svg {
  width: 18px;
  height: 18px;
}

.booking-card-type h3 {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 17px;
  color: #1a2e44;
  margin: 0;
}

.booking-card-status {
  padding: 4px 14px;
  border-radius: 20px;
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 600;
  font-size: 12px;
}

.booking-card-status.confirmed {
  background: #e8f8e8;
  color: #2d8a2d;
}

.booking-card-status.pending {
  background: #fff5e8;
  color: #d4922a;
}

.booking-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-card-detail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-card-detail-icon {
  color: #8a95a3;
}

.booking-card-detail-icon svg {
  width: 16px;
  height: 16px;
}

.booking-card-detail span {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-size: 14px;
  color: #5a6a7c;
}

.booking-card-detail strong {
  font-weight: 600;
  color: #1a2e44;
}

/* Empty State */
.bookings-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.bookings-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f8f0 0%, #e4f0e4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #5eab5a;
}

.bookings-empty-icon svg {
  width: 36px;
  height: 36px;
}

.bookings-empty-state h3 {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 20px;
  color: #1a2e44;
  margin: 0 0 8px;
}

.bookings-empty-state p {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-size: 15px;
  color: #8a95a3;
  margin: 0 0 24px;
}

.bookings-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #5eab5a 0%, #78dd73 100%);
  color: #fff !important;
  border-radius: 14px;
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.bookings-empty-cta:hover {
  box-shadow: 0 6px 20px rgba(94, 171, 90, 0.35);
  transform: translateY(-2px);
  text-decoration: none !important;
  color: #fff !important;
}

.bookings-empty-cta svg {
  width: 20px;
  height: 20px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 767px) {
  .hire-cards-row {
    flex-direction: row;
    gap: 12px;
  }

  .hire-card {
    min-width: 0;
    max-width: none;
    flex: 1 1 calc(50% - 6px);
    padding: 14px 14px;
  }

  .hire-card-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    font-size: 18px;
  }

  .hire-card-text .card-label {
    font-size: 14px;
  }

  .hire-card-text .card-sublabel {
    font-size: 11px;
  }

  .hire-card-arrow {
    width: 28px;
    height: 28px;
  }

  .hire-therapist-section .hire-section-title {
    font-size: 20px;
  }

  /* Details Page */
  .hire-therapist-page {
    padding-top: 80px;
  }

  .hire-hero-banner {
    padding: 24px 20px;
  }

  .hire-hero-banner h1 {
    font-size: 22px;
  }

  .hire-charges-price {
    font-size: 20px;
  }

  /* Modal */
  .hire-modal {
    max-width: 100%;
  }

  .hire-modal-actions {
    flex-direction: column;
  }

  .hire-modal-cancel,
  .hire-modal-pay {
    flex: 1;
  }

  /* Bookings */
  .bookings-history-page {
    padding-top: 80px;
  }

  .bookings-history-header h1 {
    font-size: 22px;
  }

  .booking-card-details {
    grid-template-columns: 1fr;
  }

  .bookings-tabs {
    gap: 6px;
  }

  .bookings-tab {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .hire-modal {
    border-radius: 24px;
    margin-bottom: 40px;
  }

  .hire-modal-overlay {
    align-items: center;
  }
}

/* Payment success animation */
@keyframes successPulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.payment-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-success-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  max-width: 360px;
  animation: successPulse 0.5s ease;
}

.payment-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5eab5a 0%, #78dd73 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}

.payment-success-icon svg {
  width: 36px;
  height: 36px;
}

.payment-success-card h2 {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 22px;
  color: #1a2e44;
  margin: 0 0 8px;
}

.payment-success-card p {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-size: 15px;
  color: #8a95a3;
  margin: 0;
}

/* ==========================================================================
   HOMEPAGE THERAPIST SPECIALITIES CARDS LAYOUT AND HOVER STYLES
   ========================================================================== */

.hire-card-spec {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  min-height: 220px;
  width: calc(50% - 15px);
  min-width: 290px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  cursor: pointer;
  box-sizing: border-box;
  margin-bottom: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hire-card-spec {
    width: 100%;
    min-height: 190px;
  }
}

.hire-card-spec:hover {
  background-color: #ff7522 !important;
  border-color: #ff7522 !important;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 117, 34, 0.25);
}

.hire-card-icon-circle {
  width: 42%;
  height: 100%;
  border-radius: 0;
  background: transparent;
  display: block;
  flex-shrink: 0;
  margin-right: 0;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s ease;
}

/* Double-layered circles look on the icon wrapper */
.hire-card-icon-circle::before {
  display: none;
}

.hire-card-spec:hover .hire-card-icon-circle {
  background: transparent !important;
  box-shadow: none;
}

.hire-card-spec:hover .hire-card-icon-circle::before {
  display: none;
}

.hire-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}

.hire-card-content {
  flex: 1;
  padding: 25px 20px 25px 35px;
  margin-left: -30px;
  background: #ffffff;
  border-radius: 20px 0 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hire-card-spec:hover .hire-card-content {
  background: #ff7522 !important;
}

.hire-card-content h3 {
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 17px;
  color: #c4662f;
  margin: 0 0 8px 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.hire-card-spec:hover .hire-card-content h3 {
  color: #ffffff !important;
}

.hire-card-content p {
  font-family: 'Lato', sans-serif !important;
  font-size: 13.5px;
  color: #666;
  line-height: 1.4;
  margin: 0 0 15px 0 !important;
  transition: color 0.3s ease;
}

.hire-card-spec:hover .hire-card-content p {
  color: #ffffff !important;
}

.hire-now-btn {
  align-self: flex-start;
  background-color: #5eab5a;
  color: #ffffff !important;
  padding: 8px 22px;
  border-radius: 8px;
  font-family: 'Baloo Paaji 2', cursive !important;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(94, 171, 90, 0.2);
  display: inline-block;
}

.hire-card-spec:hover .hire-now-btn {
  background-color: #ffffff !important;
  color: #ff7522 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
  .hire-card-spec {
    min-height: 155px;
  }
  .hire-card-icon-circle {
    width: 35%;
  }
  .hire-card-content {
    padding: 15px 10px 15px 20px;
    margin-left: -15px;
    border-radius: 15px 0 0 15px;
  }
  .hire-card-content h3 {
    font-size: 14px;
    margin-bottom: 4px !important;
  }
  .hire-card-content p {
    font-size: 11.5px;
    line-height: 1.3;
    margin-bottom: 8px !important;
  }
  .hire-now-btn {
    padding: 5px 14px;
    font-size: 11px;
    border-radius: 6px;
  }
}

/* Active item text contrast fix in bookings list */
#booking-history .booking-item.active .text h3,
#booking-history .booking-item.active .text h3 b,
#booking-history .booking-item.active .text span,
#booking-history .booking-item.active .text span b {
  color: #ffffff !important;
}