/* ===== General Styles ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}
/* ========== Base Navigation Styles ========== */
.main-nav {
  position: relative;
  text-align:left;
  align-content:flex-start;
}

.nav-container {
  position: absolute;
  text-align:left;
  align-content:flex-start;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

}

.nav-toggle {
  cursor: pointer;
  padding: 2px;
  display: inline-block;
}

.nav-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: #333;
  margin: 1px 0;
}

/* Menu hidden by default */
.nav-menu {
  position: absolute;
  top: 100%; /* directly below toggle */
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
  list-style: none;
}

.nav-menu li {
  margin: 8px 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
}

/* Show menu when active */
.nav-menu.active {
  display: block;
}

/* ========== Base Navigation Styles ========== */
.main-nav {
  
  padding: 0px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
  margin-top:10px ;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff751a;
}

.nav-btn .btn-primary {
  background: #e65c00;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nav-btn .btn-primary:hover {
  background: #ff751a;
}

/* ========== Toggle Button Styles ========== */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-content:flex-start;
  cursor: pointer;
  position: absolute;
  top: 10;
  left: 10;
  z-index: 999;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  
  background: #fff;
  border-radius: 2px;
}


/* ========== Responsive Styles ========== */
@media (max-width: 768px) {
  .main-nav {
    padding: 5px 0;
  }

  .flex-between {
    
    align-items: flex-start;
    gap: 10px;
  }


  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 999;
  }

  .nav-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 100%; /* directly below toggle */
  left: 0;   /* align to left */
  width: 150px;
  padding: 5px;
  margin: 0;
  list-style: none;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transform: translateY(-10px);
opacity: 0;
pointer-events: none;
}


.nav-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}


  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
  }

  .nav-menu li a:hover {
    color: #e65c00;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    display: none;
  }
}

.top-bar {
    background:#e65c00;
}
/* Logo */
.top-bar .logo img {
  height: 50px;
  
  width: auto;
}

@media (max-width: 768px) {
  .top-bar .logo img {
    width: 100%;
    max-width: 120px;
    display: block;
    margin: 0 auto;
  }
.book-now {
    display:none;
}
.contact-info span{
    display:none;
}
.contact-info-footer {
    font-size:0.9em;
    
}
.contact-info-footer span {
    margin-right:10px;
}
  .top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    text-align: center;
  }

  img {
    display: block;
    margin: 0 auto;
  }
  .contact-info {
      font-size:12px;
  }
  .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;            /* fixed square for each icon */
  height: 28px;
  border-radius: 50%;     /* make them round */
  background: #333;       /* default background */
  color: #fff;
  transition: background 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: #0056b3;    /* hover color */
  transform: scale(1.2);  /* slight zoom effect */
}

.social-icons i {
  font-size:20px;
}
  
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Container ===== */
.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Header ===== */
header {
  background: #fffe;
  color: #fff;
  padding: 5px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffd700;
}

.social-icons {
  display: flex;
  gap: 10px;              /* spacing between icons */
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;            /* fixed square for each icon */
  height: 28px;
  border-radius: 50%;     /* make them round */
  background: #333;       /* default background */
  color: #fff;
  transition: background 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: #0056b3;    /* hover color */
  transform: scale(1.2);  /* slight zoom effect */
}

.social-icons i {
  font-size: 20px;
}


/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(rgb(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url("images/doorstep_service.webp") no-repeat center center / cover;
  color: #fff;
  text-align: center;
  padding: 80px 10px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.hero h1 {
  font-size: 2rem;
  font-weight:1000;
  margin-bottom: 20px;
  color:#4a90e2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 10px;
  background: #333;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s;
  font-weight: bold;
}

.btn:hover {
  background: #0056b3;
}

/* ===== Services Section ===== */
.services {
  padding: 10px;
  background: #f9f9f9;
  text-align: center;
}
.service-details p{
    font-size:0.9em;
}
.services h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #ff4b2b;
}
.service-grid {
  display: grid;
  
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
  gap: 10px;
}

/* Every direct child inside the grid gets styled as a card */
.service-grid > div {
  border: 1px solid #000;
  border-radius: 10px;
  padding: 5px;
  background: #fff;
  transition: 0.3s ease;
}
/* Optional hover effect */
.service-grid > div:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

.service-card img {
  display: block;      /* makes it a block element */
  margin: auto; /* centers horizontally + adds spacing below */
  max-width: 100%;    /* prevents extra large images */
  height: auto;
  border:1px dashed black;
  box-sizing:border-box;
  padding:10px;
}
.service-search-wrapper {
  margin-bottom: 1rem;
  text-align: center;
}

#serviceSearchInput {
  width: 80%;
  max-width: 500px;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.footer-service {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-service > div {
  flex: 1 1 calc(25% - 20px); /* 4 per row on desktop */
  min-width: 200px;
  background: #f5f5f5;
  color:black;
  padding: 5px;
  text-align: center;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .hero {
    padding: 30px 10px;
    min-height: 140px;
    background-position: center top;
  }

  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .hero .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Tablet: 2 per row */
@media (max-width: 768px) {
  .footer-service > div {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Mobile: 1 per row */
@media (max-width: 480px) {
  .footer-service > div {
    flex: 1 1 100%;
  }
}


.service {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-5px);
}

.service h3 {
  margin-bottom: 15px;
  color: #333;
}

/* ===== Shared Content Sections (About, What We Do, Why Choose Us) ===== */
.content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin:10px;
  border:1px dashed #004f73;
  border-radius:20px;
  padding: 20px;
  
}
.content-join {
  text-align:center;
  gap: 20px;
  margin:10px;
  border:1px dashed #b14339;
  border-radius:20px;
  padding: 5px;
  
}
.content-img {
  flex: 1;
  text-align: center;
}

.content-img img {
  width: 100%;
  min-width:40%;
  text-align:center;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.content-text {
  flex: 1;
  min-width:60%;
}

.content-text h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff4b2b;
  text-align: left;
}

.content-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.content-text ul {
  list-style: none;
  padding: 0;
}

.content-text ul li {
  margin: 10px 0;
  padding-left: 15px;
  position: relative;
  line-height: 1.6;
}

.content-text ul li::before {
  content: "✔";
  color: #ff6600;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.notes {
    font-style:italic;
    min-height:50px;
    font-size:0.8em;
    
}
.cc-selector {
    max-width:250px;
    padding:10px;
}

.contact-info {
    padding:5px 0px;
    display:flex;
    justify-content:space-between;
    gap:10px;
    color:#000;
}
/* ===== Contact Section ===== */
.contact {
  padding: 60px 20px;
  background: #fff5f2;
  text-align: center;
}

.contact h2 {
  color: #ff4b2b;
  margin-bottom: 10px;
}

.contact form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
}

.contact button {
  padding: 12px;
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s;
}

.contact button:hover {
  background: #e65c00;
}

/* ===== Footer ===== */
footer {
  background:#e65c00;
  color: #fff;
  text-align: center;
  padding: 10px;
  
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #ffd700;
  font-weight: bold;
  font-size:0.9em;
  gap:30px;
}
/* ===== Footer ===== */
.footer-end {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
}

.footer-end p {
  margin: 5px 0;
}

.footer-end a {
  color: #ffd700;
  font-weight: bold;
  font-size:0.9em;
  gap:30px;
}
.footer-links {
    display: flex;
    justify-content: space-between;
}

/* ===== Responsive Layout ===== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

/* Each service card */
.service-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px;
    width: 100%;
    max-width:100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    box-sizing:border-box;
}
  
.notes {
    font-style:italic;
    min-height:50px;
    font-size:0.8em;
    
}
.cc-selector {
    max-width:250px;
    padding:8px;
    font-size:0.9em;
}

.category {
    font-size:0.9em;
}
.rate {
    font-size:0.9em;
}
  .content-container,
  .content-container.reverse {
    flex-direction: column;
    text-align: center;
  }

  .content-img img {
    max-width: 100%;
   
  }

  .content-text h2 {
    text-align: center;
  }

  .chatbox {
    width: 90%;
    right: 5%;
  }
}
/* Container for all service cards */
#services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
}

/* Each service card */
.service-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    box-sizing:border-box;
}

.service-card:hover {
    transform: translateY(-4px);
}
/* Desktop: 3 cards per row */
@media (min-width: 768px) {
  .service-card {
    width: calc(33% - 11px); /* subtract gap to avoid overflow */
  }
}

/* Mobile: 1 card per row */
@media (max-width: 767px) {
  .service-card {
    width: 100%;
  }
  .stats {
      display:none;
  }
  footer {
      display:none;
  }
}
/* Service image */
.service-card .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

/* Service details */
.service-card p, 
.service-card h3 {
    margin: 6px;
    font-family: Arial, sans-serif;
}

/* CC dropdown */
.cc-selector {
    margin: 8px 0;
    padding: 6px 8px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Book Now button */
.book-now-btn {
    display: block;
    margin-top: 12px;
    width: 100%;
    padding: 10px;
    background: #333;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.book-now-btn:hover {
    background:#e65c00;
}
.cc_selector {
    text-decoration:underline;
    font-size:0.8em;
}
#booking-modal {
  position: fixed;
  top: 20px; /* fixed distance from top */
  left: 50%;
  transform: translateX(-50%); /* horizontal centering only */
  background: #f9f9f9;
  border: 2px solid #4CAF50;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 95%;
  max-height: 65vh;
  border-radius: 8px;
  overflow-y: auto;
}

#loginBox {
  position: fixed;
  top: 20px; /* fixed distance from top */
  left: 50%;
  transform: translateX(-50%); /* horizontal centering only */
  background: #f9f9f9;
  border: 2px solid #4CAF50;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  padding:20px;
  box-sizing:border-box;
  width: 100%;
  max-height: 65vh;
  border-radius: 8px;
  overflow-y: none;
}

/* Input fields */
#loginBox input, #loginBox textarea{
    width: 95%;
    padding: 6px 8px;
    margin: 2px 0;
    box-sizing:border-box;
    border-radius: 6px;
    border: 1px solid #ccc;
}

#loginBtn {
    padding:8px 12px;
}
#loginBox select {
    width: 95%;
    padding: 6px 8px;
    margin: 2px 0;
    box-sizing:border-box;
    border-radius: 6px;
    border: 1px solid #ccc;
}


/* ===============================
   Toaster
   =============================== */
#toastContainer {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #333;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.3s forwards;
}
.toast.success { background: #28a745; }
.toast.error   { background: #dc3545; }
@keyframes slideIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   Modals
   =============================== */


/* Headings inside cookie modal */
#cookieModal h3, 
#cookieModal h4 {
  margin-top: 0;
  color: #222;
}

/* Terms list */
#cookieModal ul {
  margin: 0;
  padding-left: 10px;
}
#cookieModal li {
  margin-bottom: 5px;
  color: #555;
}

/* Primary button */
#cookieModal .btn-primary {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
}
#cookieModal .btn-primary:hover {
  background-color: #0056b3;
}

/* Close button */
#cookieModal .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
}
#cookieModal .close:hover {
  color: #000;
}
#cookieModal label {
  display: inline-flex;
  align-items: center;   /* vertically center checkbox and text */
  gap: 6px;
  width:20%;
  margin: 8px 0;
  color: #333;
}
#cookieModal input {
    width:80%;
}
/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

#cookieModal {
    
  text-align: left;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  
}

/* Optional: backdrop */
#booking-modal::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Modal content */
#booking-modal .modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    width: 100%;
    max-width: 600px; /* ensures it doesn't overflow on larger screens */
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


/* Close button */
#booking-modal .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    cursor: pointer;
}

/* Input fields */
#booking-modal input, #booking-modal textarea{
    width: 95%;
    padding: 6px 8px;
    margin: 2px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}
#booking-modal select {
    width: 95%;
    padding: 6px 8px;
    margin: 2px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}
#booking-modal select#vehicle-select {
  width: 100%;
  padding: 6px 8px;
  
  border-radius: 6px;
  border: 1px solid #ccc;
}

#booking-modal button {
  margin-top: 10px;
  padding: 8px 16px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Vehicle section in modal */
#vehicle-section {
    display: none;
    width:100%;
    
}
#new-vehicle-fields {
    box-sizing:border-box;
    
}
/* Input fields */
#new-vehicle-fields input, #new-vehicle-fields textarea, #new-vehicle-fields select ,#new-vehicle-fields select#vehicle_type, #new-vehicle-fields select#fuel_type  {
    width: 100%;
    padding: 8px 10px;
    margin: 3px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing:border-box;
}
#make-list, #model-list, #variant-list {
    background:#eef;
}
#booking-success-modal {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #4CAF50;
  z-index: 1000;
  background: #f0f9f0;
  max-width: 400px;
  width:90%;
  border-radius: 8px;
}

.booking-confirmation {
 
  padding: 10px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  white-space: pre-wrap;
  line-height: 1.5;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 0;
}

#booking-success-modal button {
  margin:10px;
  padding: 8px 16px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#service_date {
  display: none;
  
}

#service_date.visible {
  display: block;
  
}

/* ================================
   GLOBAL MODAL ENGINE
================================ */

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter: blur(4px);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    animation:fadeIn .25s ease;
}

@keyframes fadeIn{
    from{opacity:0}
    to{opacity:1}
}

.modal-content{
    width:min(92%,520px);
    background:#ffffff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 25px 70px rgba(0,0,0,.25);
    animation:slideUp .28s ease;
}

@keyframes slideUp{
    from{
        transform:translateY(40px);
        opacity:.4;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

.request-modal h3{
    margin-bottom:6px;
    font-size:1.55rem;
    font-weight:700;
}

.provider-highlight{
    margin-bottom:18px;
    color:#444;
    font-size:.95rem;
}

.request-modal label{
    display:block;
    margin-top:14px;
    margin-bottom:4px;
    font-weight:600;
    font-size:.9rem;
}

.request-modal input,
.request-modal select,
.request-modal textarea{
    width:100%;
    padding:11px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:.95rem;
    transition:.2s;
}

.request-modal input:focus,
.request-modal select:focus,
.request-modal textarea:focus{
    outline:none;
    border-color:#ff6b00;
    box-shadow:0 0 0 3px rgba(255,107,0,.15);
}

.request-modal textarea{
    min-height:85px;
    resize:vertical;
}
.primary-btn{
    width:100%;
    margin-top:18px;
    padding:13px;
    border:none;
    border-radius:12px;
    background:#ff6b00;
    color:#fff;
    font-weight:700;
    font-size:1rem;
    cursor:pointer;
    transition:.25s;
}

.primary-btn:hover{
    background:#e55f00;
    transform:translateY(-2px);
}

.secondary-btn{
    width:100%;
    margin-top:10px;
    padding:11px;
    border:none;
    border-radius:12px;
    background:#f1f1f1;
    font-weight:600;
    cursor:pointer;
}

.secondary-btn:hover{
    background:#e4e4e4;
}
.service-categories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:26px;
    margin-top:40px;
}

.service-category-card{
    background:#fff;
    border-radius:20px;
    padding:22px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.28s;
    border:1px solid transparent;
}

.service-category-card:hover{
    transform:translateY(-6px);
    border-color:#ffe2d2;
}
.category-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
}

.vehicle-badge{
    background:#fff3eb;
    color:#ff6b00;
    padding:5px 10px;
    border-radius:999px;
    font-size:.75rem;
    font-weight:700;
}

.starting-price{
    font-size:1.05rem;
    font-weight:700;
    margin:10px 0 4px;
}

.duration{
    font-size:.9rem;
    color:#666;
    margin-bottom:14px;
}
.provider-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px;
    border-radius:14px;
    border:1px solid #eee;
    margin-top:10px;
    transition:.2s;
    background:#fafafa;
}

.provider-row:hover{
    background:#fff7f2;
    border-color:#ffd8c2;
}

.provider-left strong{
    font-size:.96rem;
}

.provider-name{
    font-size:.8rem;
    color:#666;
}

.provider-metrics{
    font-size:.75rem;
    color:#888;
    margin-top:4px;
}

.provider-rate{
    font-size:1.15rem;
    font-weight:800;
    color:#ff6b00;
}
.select-provider-btn{
    border:none;
    background:#111;
    color:#fff;
    padding:8px 14px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.select-provider-btn:hover{
    background:#ff6b00;
}
.redirect-popup{
    position:fixed;
    bottom:30px;
    right:30px;
    background:#111;
    color:#fff;
    padding:14px 18px;
    border-radius:12px;
    font-size:.9rem;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    display:none;
}
.category-image-wrapper{
    width:100%;
    height:180px;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:14px;
    background:#f4f4f4;
}

.category-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}

.service-category-card:hover .category-image{
    transform:scale(1.06);
}
.field-group{
    margin-top:18px;
    display:flex;
    flex-direction:column;
    gap:6px;
}

#vehicle-selection-wrapper{
    margin-top:12px;
    transition:all .25s ease;
}

.modal-actions{
    display:flex;
    gap:12px;
    margin-top:22px;
}

.modal-actions button{
    flex:1;
}
