* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000; /* Keeps it above other content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: white;
  color: black;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin-top: 5%;
  margin-bottom: 5%;
}

nav ul li a {
  color: black;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover{
  color: black;
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
  padding: 100px 50px;
  flex-wrap: wrap;           /* allow stacking on small screens */
  background-image: url('../img/bg_black.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  gap: 50px;
  text-align: center;        /* center text too */
}

.text-content {
  max-width: 50%;
}

.text-content h1 {
  font-size: 4vw;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.order-btn {
  background-color:white;
  color:black;
  padding: 12px 30px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.order-btn:hover {
  background-color: gray;
  color: rgba(255, 255, 255, 0.411);
}

.image-content img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

/* Responsive: Tablets and up */
@media (min-width: 768px) {
  .text-content,
  .image-content {
    flex: 1 1 45%;
    text-align: left;
  }

  .text-content {
    max-width: 50%;
  }
}

/* Fix broken media query */
@media (min-width: 768px) {
  h1 {
    font-size: 4vw;
  }
}

/* Responsive: Mobile */
@media (max-width: 767px) {
  .hero {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .text-content {
    max-width: 100%;
  }

  h1 {
    font-size: 9vw;
    color:white;
  }

  .order-btn {
    margin: 20px auto;
  }

  .image-content {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .image-content img {
    max-width: 80%;
  }
}


html {
  scroll-behavior: smooth;
}

.service-section {
   display: flex;
  flex-direction: row;
  align-items: center;
  padding: 60px 80px;
  background-color: #ffffff;
  color: #333;
  gap: 40px;
}

.service-text {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-image {
   flex: 1;
  display: flex;
  justify-content: flex-end;
}

.service-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
}

.service-text h3 {
  color: #4a4a4a;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
}

.service-text h2 {
  font-size: 32px;
  color: #1c432e;
  margin-bottom: 20px;
  line-height: 1.4;
}

.service-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}


.title {
  text-align: center;
}

.title h1 {
  color: black;
  margin-top: 5%;
  font-size: 20px;
}

.title .underline {
  width: 50%;
  height: 4px;
  background-color: black; /* Accent color */
  margin: 0 auto;
  border-radius: 2px;
}

/*service2*/

.service2-section {
 display: flex;
  flex-direction: row;
  align-items: center;
  padding: 60px 80px;
  color: #333;
  gap: 40px;
}

.service2-text {
   flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service2-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.service2-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
}

.service2-text h3 {
  color: #4a4a4a;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
}

.service2-text h2 {
  font-size: 32px;
  color: #1c432e;
  margin-bottom: 20px;
  line-height: 1.4;
}

.service2-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-section,
  .service2-section {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
    text-align: center;
  }

  .service-image,
  .service2-image {
    justify-content: center;
  }

  .service-text h2,
  .service2-text h2 {
    font-size: 24px;
  }

  .service-text p,
  .service2-text p {
    font-size: 14px;
  }

  .service-image img,
  .service2-image img {
    max-width: 80%;
  }
}


/*car prices*/
.prices {
  background: black;
  padding: 80px 20px 100px; /* bottom padding for pagination */
  text-align: center;
  position: relative;
}



.pricing-pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

/* Remove margin from default pagination */
.swiper-pagination {
  margin: 0;
}

/* Your existing styles */
.swiper-slide {
  display: flex;
  justify-content: center;
}

/* Price Card */
.price-card {
  background: #fff;
  border: 2px solid gray;
  border-radius: 10px;
  padding: 30px 20px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  box-shadow: WHITE;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

h2{
    margin-bottom:30px ;
    font-size:2.5rem;
}

/* Headings */
.price-card h3 {
  font-size: 1.2rem;
  color: black;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.price-card h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

/* Price */
.card-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d3436;
  margin-bottom: 20px;
}

/* Description */
.card-description {
  font-size: 0.95rem;
  color: #636e72;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Layout container */
.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 0 40px;
  justify-items: center;
}


/* Responsive: Adjust columns on smaller screens */
@media (max-width: 1200px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prices h2 {
    font-size: 2rem;
  }
}

@media (max-width: 500px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}



/* Color themes for different car sizes */
.small {
  background-color: #fffafa;  /* Light blue for small cars */
}

.medium {
  background-color: #ffffff;  /* Light yellow for medium cars */
}

.large {
  background-color: #ffffff;  /* Light orange for large cars */
}


.car-size-filter2 {
  margin-bottom: 20px;
  text-align: center;
}

.car-size-filter2 label {
  font-size: 18px;
  margin-right: 10px;
  color: black;
}

.car-size-filter2 select {
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.price-cards {
  display: flex;
  justify-content: space-around;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  flex-wrap: wrap;
  gap: 20px;
}


/*gallery*/
.gallery {
  text-align: center;
  padding: 40px 20px;
}

.gallery h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.gallery-images {
    display: block;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-item {
   max-width: 250px;
  overflow: hidden;
  border-radius: 8px;
  /* optional: center content */
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.hidden {
  display: none;
}

.view-more-btn {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-more-btn:hover {
  background-color: #d02f3c;
}

.back-btn {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
  display: none; /* Initially hidden */
  transition: background-color 0.3s ease;
}

.back-btn:hover {
  background-color: #45a049;
}


/*location*/

.shop-map {
  background-color: black; /* or any color you prefer */
  width: 100%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* <-- box shadow */
}



.map-container {
  display: flex;
  justify-content: center;   /* ✅ center horizontally */
  align-items: center;       /* ✅ center vertically (within container height) */
  width: 150%;
  padding: 20px;
  margin-top: 50px;
}
.map-container .map{
 width: 60%;
  max-width: 1000px;
  height: 450px;
  border: none;
}

/* 📱 Responsive Styles */
@media (max-width: 768px) {
  .map-container {
    justify-content: center; /* Center map on small devices */
    padding: 10px;
    margin-top: 20px;
  }

  .map-container .map {
    width: 100%;
    max-width: 100%;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .map-container .map {
    height: 250px;
  }
}



/*booking*/

.booking-container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background: transparent;
  border-radius: 15px;
  font-family: 'Segoe UI', sans-serif;
  
}

.booking-container h2 {
  text-align: center;
  color: #1f2937;
  margin-bottom: 1.5rem;
}
.input-group {
  display: flex; /* Use flexbox */
  justify-content: center; /* Centers the items horizontally */
  align-items: center; /* Centers the items vertically */
  margin-bottom: 20px; /* Adds space below */
  gap: 10px; /* Adds space between the input fields */
}

#booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#booking-form label {
  font-weight: 600;
  color: #374151;
}

#booking-form input,
#booking-form select {
  padding: 10px;
  border: 1px solid #ccc;
  display: block;
  background-color: #ffffff;
  color: #000000;
}

#booking-form input:focus,
#booking-form select:focus {
  border-color: #10b981;
  outline: none;
}


/* Optional: Add hover effect to make it more interactive */
.highlight-today:hover {
  background-color: #059669; /* Darker green on hover */
  transform: scale(1.1); /* Slightly enlarge the element */
}

/* Container to hold the date and time pickers side by side */
.calendar-container {
  display: flex;
  justify-content: space-between;
  gap: 5px; /* Add space between the two divs */
  width: 100%;
}

/* Styling the individual date-picker and time-picker containers */
.date-picker, .time-picker {
  width: 45%; /* Adjust the width as needed */
}

/* Make the select elements look better */
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Label styling */
label {
  font-size: 14px;
  font-weight: bold;
}


/* Center the payment method section */
#payment-method {
  display: flex;          /* Use flexbox for centering */
  flex-direction: column; /* Stack elements vertically */
  align-items: center;    /* Center items horizontally */
  justify-content: center; /* Center items vertically */
  padding: 20px;
  margin: auto;
  max-width: 400px;       /* Limit the width of the container */
 
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center; /* Center items in smaller screens */
  margin-top: 15px;
}
.hidden {
  display: none;
}

.payment-detail {
  border: 1px solid #ccc;
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
}

.payment-detail p{
    color:black;
}
.payment-options label {
 flex: 1 1 120px; /* Minimum width of 120px, grow as needed */
  max-width: 180px;
  justify-content: center;
  text-align: center;
}

.payment-options label:hover {
  background-color: #f0f0f0;
}
.payment-detail form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.payment-logo {
  width: auto;
  max-width: 50px;
  height: auto;
}
input[type="radio"] {
  display: none; /* Hide default radio buttons */
}

input[type="radio"]:checked + img {
  border: 2px solid #007bff; /* Highlight the selected payment method */
  border-radius: 5px;
}




/* Mobile-specific adjustments */
@media (max-width: 600px) {
  .payment-options {
    flex-direction: row;
    gap: 10px;
  }

  .payment-options label {
    flex: 1 1 45%;
    max-width: 45%;
    padding: 8px;
    gap: 6px;
  }
.payment-logo {
    max-width: 40px; /* Smaller size on mobile */
  }


  .payment-detail {
    padding: 15px;
  }

  .paypal-button, .gcash-button {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }
}
/* Common button styles */
button {
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
}

/* PayPal Button Style */
.paypal-button {
  background-color: #ffc439;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.paypal-button::before {
  content: url('img/paypal.jpg'); /* Example PayPal icon */
  display: inline-block;
  height: 20px;
}

/* GCash Button Style */
.gcash-button {
  background-color: #5f3dc4;
  color: #fff;
  display: inline-block;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gcash-button:hover {
  background-color: #4c2ca9;
}


/* Styling for the input group */
.input-group {
  margin-bottom: 20px;
}

.input-item {
  margin-bottom: 10px;
}

.input-item label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.input-item input {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.input-item input:focus {
  border-color: #000000;
  outline: none;
}
.form-actions {
  text-align: right;
  margin-top: 20px;
}

.form-actions button {
  background-color: #58150c;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-actions button:hover {
  background-color: #000000;
}
/*feedback*/
.feedback {
  background-color: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 50px;
}

.feedback h2 {
  color: #333;
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.feedback-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.form-group textarea, .form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fafafa;
  transition: border-color 0.3s ease;
}

.form-group textarea:focus,
.form-group select:focus {
  border-color: #4caf50;
  outline: none;
}

.submit-btn {
  background-color: #4caf50;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #45a049;
}


/*footer*/
.footer {
  box-shadow: 0 4px 8px rgb(32, 2, 2);
  background-color: black;
  color: white;
  padding: 50px 20px;
  text-align: center;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer-contact,
.footer-social {
  flex: 1;
  margin: 0 20px;
}

.footer-contact h3,
.footer-social h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-contact p,
.footer-social ul {
  font-size: 16px;
}

.footer-contact p {
  margin: 10px 0;
}

.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-social ul li {
  margin-bottom: 8px;
}

.footer-social ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-social ul li a:hover {
  color: #e63946; /* Accent color */
}

.footer-bottom {
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom p {
  margin: 0;
}


/*feedback*/
/* Feedback Section */
.feedback2 {
  padding: 40px 20px;
  background-color: white;  /* Black background */
  color: #000000;
  text-align: center;
  height: 80vh;  /* Set height to 100% of the viewport height */
  display: flex;
  justify-content: center;  /* Center the content vertically */
  align-items: center;  /* Center the content horizontally */
}
.feedback2 h2{
  color: black;
}
.feedback2-container {
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
  box-sizing: border-box;
  background-color: white;
}


.feedback2-title {
  font-size: 2em;
  margin-bottom: 30px;
  color: #fff;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.feedback2-card {
  width: 100%;
  height: 300px;  /* Fixed height for each feedback card */
  flex-shrink: 0;
  padding: 20px;
  box-sizing: border-box;
  background-color: white;  /* Background for each feedback */
  border-radius: 10px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feedback2-text {
  font-size: 1.2em;
  font-style: italic;
  color: black;
}

.customer-name {
  margin-top: 10px;
  font-weight: bold;
  color: #fff;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  background-color: rgba(0,0,0,0.5);
  border: none;
  padding: 10px;
  color: white;
  cursor: pointer;
  z-index: 2;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/*success message*/
.feedback-message-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
 
}

.feedback-success,
.feedback-error {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feedback-success {
  background-color: #e6ffe6;
  color: #267a26;
  border: 1px solid #267a26;
  margin-left: 28%;
  margin-bottom: 4%;
  
}

.feedback-error {
  background-color: #ffe6e6;
  color: #a82a2a;
  border: 1px solid #a82a2a;
  margin-left: 28%;
  margin-bottom: 4%;
}



/*feeback responsive css*/
@media (max-width: 768px) {
  .feedback2 {
    padding: 30px 10px;
  }

  .feedback2-title {
    font-size: 1.5em;
  }

  .feedback2-card {
    padding: 15px;
    min-height: 200px;
  }

  .feedback2-text {
    font-size: 1em;
  }

  .arrow {
    font-size: 1.5em;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .feedback2-title {
    font-size: 1.3em;
  }

  .feedback2-text {
    font-size: 0.95em;
  }

  .customer-name {
    font-size: 0.9em;
  }

  .arrow {
    font-size: 1.2em;
    padding: 6px;
  }
}
@media (max-width: 600px) {
  .prices h2 {
    font-size: 32px;
  }

  .price-card h3 {
    font-size: 18px;
  }

  .price-card .price {
    font-size: 28px;
  }

  .price-card .description {
    font-size: 13px;
  }
}   


/*profile*/
/*profile*/
.nav-profile {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  list-style-type: none;
  padding: 10px;
  z-index: 1000;
}

.dropdown-menu li {
  padding: 8px 12px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: black;
  display: block;
}

.dropdown-menu li:hover {
  background-color: #f0f0f0;
}

.section-divider {
  width: 90%;
  margin: 40px auto;
  border-top: 2px solid #520f0f;
  opacity: 0.8;
}

.section-divider-gallery {
  width: 90%;
  margin: 40px auto;
  border-top: 2px solid #080808;
  opacity: 0.8;
}
/*shop availability*/
.booking-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
}

.booking-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.form-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.form-column {
  flex: 1;
  min-width: 280px;
}

.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.summary-box {
  border: 1px solid #ccc;
  padding: 15px;
  margin-bottom: 20px;
  background: #f9f9f9;
}

.payment-methods {
  display: flex;
  gap: 20px;
  align-items: center;
}

.payment-methods img {
  height: 30px;
  vertical-align: middle;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: black;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #333;
}



  
  h3 {
      margin-top:2%;
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
  }

  .modal-content {
    background: white;
    padding: 20px;
    width: 300px;
    margin: 20% auto;
    border-radius: 10px;
    text-align: center;
    color: black;
  }

  .modal-content button {
    margin-top: 15px;
    padding: 8px 20px;
    background: black;
    color:white;
    border: none;
    border-radius: 5px;
  }

  .modal-content button:hover {
    background: darkred;
  }
  
  
  
  
  @media (max-width: 1024px) {
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card {
    width: 100%; /* Let it stretch fully within the grid cell */
    padding: 15px;
  }

  .price-card h3 {
    font-size: 16px;
  }

  .price-card .price {
    font-size: 24px;
  }

  .price-card .description {
    font-size: 12px;
  }
}



/*no top services message display design css*/
.no-top-service {
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically */
    text-align: center;      /* center text */
    min-height: 300px;       /* adjust height as needed */
    border-radius: 10px;     /* optional rounded corners */
    margin: 30px auto;       /* spacing around section */
    padding: 40px 20px;      /* internal spacing */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* subtle shadow */
}

.no-top-service h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.no-top-service h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffcc00; /* gold star color */
}

.no-top-service p {
    font-size: 1.1rem;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
}


 .booking-container {
      max-width: 1200px;
      margin: auto;
      padding: 40px;
      border-radius: 12px;
    }

    h1 {
      text-align: center;
      margin-bottom: 35px;
      color: black;
      font-size: 2rem;
      letter-spacing: 2px;
    }

    /* Grid Layout */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr 1fr; /* left, center, right */
      gap: 50px; /* spacing between columns */
      align-items: start;
    }

    .form-column {
      padding: 10px;
    }

    label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      color: black;
    }



select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;  /* make it full width */
  max-width: 300px;
  background: #fff;
  cursor: pointer;
}

    input, select, textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #444;
      border-radius: 6px;
      font-size: 0.95rem;
      color: black;
      margin-bottom: 15px;
    }

    textarea {
      resize: vertical;
    }

    .flatpickr-calendar {
      background: WHITE;
      border: 1px solid #444;
      border-radius: 8px;
      
    }
    .flatpickr-day {
      color:BLACK;
    }
    .flatpickr-day.selected {
      background: #fff;
      color:BLACK;
    }

    .btn {
      width: 100%;
      background: black;
      color: white;
      padding: 14px;
      border-radius: 8px;
      border: none;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s ease;
      margin-top: 20px;
    }
    .btn:hover {
      background: #ddd;
    }

    .summary {
      background:white;
      padding: 20px;
      border-radius: 8px;
    }

    .summary p {
      margin: 8px 0;
      color:black;
    }
   
    .payment-options {
      display: flex;
      gap: 15px;
      margin-top: 12px;
    }

    .payment-card {
      flex: 1;
      border-radius: 10px;
      padding: 12px;
      cursor: pointer;
      transition: 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 70px;
    }

    .payment-card img {
      max-height: 40px;
      object-fit: contain;
    }
    
    /* ✅ Availability Colors */
.flatpickr-day.open {
  background: #4CAF50 !important; /* Green for open */
  color: #fff !important;
  border-radius: 50%;
}

.flatpickr-day.closed {
  background: #F44336 !important; /* Red for closed */
  color: #fff !important;
  border-radius: 50%;
}

/* ✅ Hover states */
.flatpickr-day.open:hover {
  background: #45a049 !important;
}
.flatpickr-day.closed:hover {
  background: #d32f2f !important;
}

