* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: #fff;
  color: #222235;
  height: 100vh;
  overflow-x: hidden;
}

.app-wrapper {
  max-width: 480px;
  margin: auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-header {
  background: #fff;
  padding: 2px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-logo {
  width: 85px;
  height: 85px;
  border-radius: 10px;
  
}

.app-title {
  background: linear-gradient(90deg,#e83e8c, #f7b731, #a3cb38, #00d2d3);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* .gradient-text {
  background: linear-gradient(90deg,#e83e8c, #f7b731, #a3cb38, #00d2d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */
.tagline {
  font-size: 16px;
  color: #222235;
  margin-top: -6px;
}

.desktop-nav {
  display: none;
}

.category-tabs {
  display: flex;
  overflow-x: auto;
  padding: 1px;
  background: #fff;
}

.category-tabs button {
  background: #5c5c99;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  margin-right: 10px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}

.category-tabs button.active {
  background: linear-gradient(to left, #e83e8c, #f7b731, #a3cb38, #00d2d3);

}

.services-section {
  flex: 1;
  overflow-y: auto;
  padding: 10px;

}

.service-card {
  background: #5c5c99;
  border-radius: 15px;
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0px;
  padding-right: 5px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  /* add this */
}

.service-checkbox {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  width: 24px;
  height: 24px;
  transform: scale(1.2);
  cursor: pointer;
  appearance: none;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: background-color 0.2s, border-color 0.2s;
}

.service-checkbox:checked {
  background-color: #000000; /* green when checked */
  border-color: #FFFF00;
}

.image-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100px;
}

.service-img {
  width: 80px;
  height: 80px;
  background: #777;
  border-radius: 10px;
  margin-bottom: 8px;
}

.service-meta {
  text-align: center;
}

.service-meta .price {
  background: #000000;
  padding: 6px 14px;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}


.service-meta .price,
.service-meta .duration {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.service-meta .price i,
.service-meta .duration i {
  margin-right: 5px;
  color: #FFFF00;
}

.service-info {
  flex: 2;
  padding-left: 0px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-info h5 {
  margin: 0;
  color: #ffb6c1;
}

/* Services details*/ 

.highlight {
  color: #F4BA71;
  font-weight: 600;
  font-size: 15px;
}

.info-text {
  color: #a3cb38;
  font-weight: 600;
  font-size: 14px;
}

.options{
  color: #00d2d3;
  font-weight: 600;
  font-size: 12px;
}
.step-tag {
  background-color: #d1ecf1; /* Light blue background */
  color: #0c5460;            /* Dark text */
  border: 1px solid #0c5460; /* Border same as text color */
  padding: 2px 5px;
  margin-left: 2px;
  border-radius: 15px;
  font-size: 0.85em;
  font-weight: 600;
}

.step-tag-red {

  background-color: #63BFC5; /* Light blue background */

  color: #000000;            /* Dark text */
 border: 1px solid #000000;  /*Border same as text color */
  padding: 3px 8px;
  margin-left: 2px;
  border-radius: 15px;
  font-size: 0.85em;
  font-weight: 600;
}

.step-tag-demand {
  background-color: #F81E1E; /* Dark Red background */

  color: #000000;            /* Dark text */
  border: 1px solid #000000; /* Border same as text color */
  padding: 3px 8px;
  margin-left: 2px;
  border-radius: 15px;
  font-size: 0.85em;
  font-weight: 600;
}

.step-tag-heading {

  background: linear-gradient(to right, #e83e8c, #f7b731, #a3cb38, #00d2d3);

/* Light blue background */


  color: #000000;            /* Dark text */
  border: 1px solid #000000; /* Border same as text color */
  padding: 3px 8px;
  margin-left: 2px;
  border-radius: 15px;
  font-size: 0.85em;
  font-weight: 600;
}


.service-info p,
.service-info ol,
.service-info l{
  font-size: 14px;
  color: #ccc;
  margin-bottom: 0;
  padding-left: 15px;
}


.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #5c5c99;
  padding: 10px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 998;
}

.bottom-nav a {
  color: #ccc;
  font-size: 20px;
  text-decoration: none;
}

.bottom-nav a.active {
  color: #ff69b4;
}

/* Fixed WhatsApp & Call Buttons */
.fixed-action-buttons {
  position: fixed;
  bottom: 58px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  gap: 8px;
  z-index: 999;
}

.btn-book-now {
  background-color: #25D366;
  color: white;
  width: 85%;
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
}



.fixed-action-buttons .call-btn {
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.toast {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 10px;
  background-color: #f44336;
  color: white;
  border-radius: 5px;
  display: none;
}

.toast-danger {
  background-color: #f44336;
}

#booking-card {
  background: linear-gradient(135deg, #7b1fa2, #ce93d8);
  color: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
  padding: 24px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(6px);
}

#booking-card h5 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
  color: #;
  text-align: center;
}

#booking-details {
  font-size: 14px;
  background: #343454;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05);
}

#booking-card input[type="date"],
#booking-card input[type="time"] {
  background: #2f2f47;
  border: 1px solid #444;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  width: 100%;
  font-size: 14px;
}

#booking-card input[type="date"]::placeholder,
#booking-card input[type="time"]::placeholder {
  color: #aaa;
}

.booking-error {
  border: 2px solid #000000;
  background-color: #FF0000;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

#booking-card .btn-success {
  background: #25D366;
  border: none;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 0;
  transition: background 0.2s ease;
}

#booking-card .btn-success:hover {
  background: #20ba59;
}

#booking-card .btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
  padding: 10px 0;
  transition: background 0.2s ease;
}

#booking-card .btn-outline-light:hover {
  background: #444;
}

/*Home Page Settings*/

.main-content {
  padding: 15px;
  overflow-y: auto;
  flex-grow: 1;
}

.card {
  background: #2f2f47;
  border: none;
  color: #fff;
}

.btn-primary {
  background-color: #ff69b4;
  border: none;
}

.btn-primary:hover {
  background-color: #e0559e;
}

.badge {
  font-size: 0.8rem;
}

.brand-scroll {
  overflow: hidden;
  white-space: nowrap;
  margin-top: 30px;
}

.scrolling-logos {
  display: flex;
  align-items: center;
  animation: scroll-alternate 20s linear infinite alternate;
}

.scrolling-logos img {
  height: 70px;
  margin: 0 20px;
  filter: brightness(0.95);
}

@keyframes scroll-alternate {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* Desktop Specific */
@media (min-width: 768px) {
  .app-wrapper {
    max-width: 100%;
    height: auto;
  }

  .bottom-nav,
  .fixed-action-buttons {
    display: none;
  }

  .desktop-nav {
    display: flex;
    gap: 25px;
    align-items: center;
  }

  .desktop-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .desktop-nav a i {
    font-size: 18px;
  }

  .desktop-nav a.active {
    color: #ff69b4;
  }

  .custom-desktop-padding {
    padding-left: 100px;
    padding-right: 100px;
  }

  .category-tabs {
    display: none;
  }

  .services-section {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    padding-left: 100px;
    padding-right: 100px;

  }

  .service-card {
    background: #343454;
    border-radius: 15px;
    display: flex;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
  }

  .service-checkbox {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    transform: scale(1.2);
    cursor: pointer;
  }

  .image-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px;
  }

  .service-img {
    width: 120px;
    height: 120px;
    background: #777;
    border-radius: 10px;
    margin-bottom: 15px;
    margin-left: 30px;

  }

  .service-meta {
    text-align: center;
  }

  .service-meta .price {
    background: linear-gradient(90deg, #6e2f91, #ff69b4);
    padding: 10px 26px;
    margin-left: 10px;
    border-radius: 15px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }


  .service-meta .price,
  .service-meta .duration {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
  }

  .service-meta .price i,
  .service-meta .duration i {
    margin-right: 5px;
    color: #ff69b4;
  }

  .service-info {
    flex: 2;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service-info h5 {
    margin: 5px;
    font-size: 26px;
    color: #ffb6c1;
  }


  .service-info p,
  .service-info ul {
    font-size: 22px;
    color: #ccc;
    margin-bottom: 0;
  }

  /* Desktop Book Now & Floating Call */
  .desktop-actions .book-now-btn {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25d366;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .call-float-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #007bff;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .call-popup-msg {
    position: fixed;
    bottom: 130px;
    right: 20px;
    background-color: #fff;
    color: #000;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 999;
  }
}