/* ===== General Styles ===== */
body {
  padding: 0;
  line-height: 1.4;
  margin:0;
  font-family:'Roboto',system-ui,-apple-system,sans-serif;
  color:#0d0d0d;
  background:#f7f9fc;
  min-height:95vh;
  display:flex;
  flex-direction:column;
    
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
   
}

/* Prevent horizontal scroll bugs */
body,
html{
    overflow-x:hidden;
}

/* Vertical rhythm */

section{
    padding:10px;
}


.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    
}

h1{
    font-size:38px;
    line-height:1.15;
    font-weight:800;
    letter-spacing:-0.5px;
}

h2{
    font-size:26px;
    font-weight:700;
    margin-bottom:18px;
}

h3{
    font-size:24px;
}

p{
    line-height:1.2;
    
}

/* ===============================
   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); }
}


/* ===== Header ===== */
header {
  background: #fffe;
  padding: 5px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 1.5rem;
}


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: 35px;            /* fixed square for each icon */
  height: 35px;
  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;
}

.top-bar {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.container.flex-apart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Mobile Styles */
@media (max-width: 600px) {

  .nav-menu {
    display: none;
    top: 50px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    width: 200px;
    padding: 10px;
  }
  .nav-menu.show {
    display: flex;
  }
}


.nav-menu.show {
  display: flex;
}

/* Desktop */
@media (min-width: 599px) {
  .nav-toggle {
    display: none; 
  }
  .nav-menu {
    display: flex;     
    flex-direction: row;
    position: static; 
    list-style:none;
    background: none;
    border: none;
    width: auto;
    padding: 0;
    gap: 15px;
  }
}

.mobile-footer {
  background: #111;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
}

.mobile-footer .stats {
  margin: 5px;
  
}

.footer-service {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-service div {
  flex: 1 1 30%;
  margin: 5px;
}

.footer-service h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #ffcc00;
}

.footer-service p {
  font-size: 0.8rem;
  margin: 4px 0 0;
}

.footer-end {
  margin: 15px 0;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links li {
  margin: 5px 10px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: #ffcc00;
}

.footer-copy {
  font-size: 0.8rem;
  margin-top: 10px;
  opacity: 0.7;
}

/* ========== Base Navigation Styles ========== */
.main-nav {

  display:flex;
  justify-content:flex-end;
  align-content:center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

}
.flex-apart {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;

}


.nav-menu li {
  margin: 8px 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
}

/* Show menu when active */
.nav-menu.active {
  display: flex;
}

/* ========== Base Navigation Styles ========== */
.main-nav {
  
  padding: 0px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align:center;
}

.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
  margin-top:10px ;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links li a {
  
  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 .confirm-btn{
  background: #e65c00;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nav-btn .confirm-btn .btn-primary:hover {
  background: #ff751a;
}

/* ========== Toggle Button Styles ========== */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-content:flex-start;
  cursor: pointer;
  position: absolute;
  z-index: 999;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  
  background: #000;
  border-radius: 2px;
}


/* ========== Responsive Styles ========== */
@media (max-width: 600px) {
  .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;
    color:#000;
  }

  .nav-menu {
  
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 100%; /* directly below toggle */
  right: 0;   /* align to left */
  width: 180px;
  padding: 10px;
  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;
  text-align:right;
}


.nav-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}


  .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;
  }

}

.top-bar {
    background:#eee;
}

@media (max-width: 600px) {
  .top-bar .logo img {
    width: 100%;
    max-width: 150px;
    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;
    gap:10px;
    text-align: center;
  }
.flex-apart {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;

}
  img {
    display: block;
    margin: 0 auto;
  }
  .contact-info {
      font-size:12px;
  }
  .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;            /* fixed square for each icon */
  height: 35px;
  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 {
  width:150px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(rgb(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url("https://jaroorat.in/images/doorstep_service.webp") no-repeat center center / cover;
  color: #fff;
  text-align: center;
  padding: 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;
}


.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: 600px) {
  .hero {
    padding: 20px 10px;
    min-height: 140px;
    background-position: center top;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

 
  .hero .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Tablet: 2 per row */
@media (max-width: 600px) {
  .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: 10px;
  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: 10px;
  margin:10px;
  border:1px dashed #004f73;
  border-radius:20px;
  padding: 6px;
  
}
.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: 30px 15px;
  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: 600px) {


/* 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;
    
  }

  .content-img img {
    max-width: 100%;
   
  }

  .content-text h2 {
    
  }

  .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: 600px) {
  .service-card {
    width: calc(33% - 11px); /* subtract gap to avoid overflow */
  }
}

/* Mobile: 1 card per row */
@media (max-width: 599px) {
  .service-card {
    width: 100%;
  }
  
}
/* 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;
}

/* Prevent background page from scrolling when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Modal overlay */
.modal {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
  z-index: 999;
}

/* Modal content */
.modal-content {
  background: #fff;
  max-height: 90vh;   /* limit height to viewport */
  overflow-y: auto;   /* enable scrolling inside modal */
  padding: 15px;
  border-radius: 18px;
  width: min(92%, 520px);
  box-shadow: 0 25px 70px rgba(0,0,0,.25);
}

#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;
}


/* 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;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes slideUp{
    from{
        transform:translateY(40px);
        opacity:.4;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

/* 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
================================ */


.request-modal h3{
    margin-bottom:6px;
    font-size:1.55rem;
    font-weight:700;
}

.provider-highlight{
    margin-bottom:10px;
    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:50px;
    resize:vertical;
}

.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:10px;
    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:10px;
    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:12px;
}

.modal-actions button{
    flex:1;
}


.primary-btn, .secondary-btn, .confirm-btn, .cancel-btn{
    width:100%;
    padding:13px;
    border:none;
    border-radius:12px;
    font-weight:700;
    font-size:1rem;
    cursor:pointer;
    transition:.25s;
    box-sizing:border-box;
}
.confirm-btn,
.primary-btn:hover{
    background:#e55f00;
    transform:translateY(-5px);
}
.primary-btn , .confirm-btn{
    background:#ff6b00;
    color:#fff;
}
.secondary-btn, .cancel-btn {
    background:#ddd;
    color:#000;
}
.cancel-btn,
.secondary-btn:hover{
    background:#005ed6;
    transform:translateY(-5px);
}

.danger-btn{
    display:inline-block;
    background:#ff3b30;
    color:#fff;
    padding:10px 16px;
    border-radius:8px;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
}

.danger-btn:hover{
    background:#d92c23;
}
    
.hero{
    position:relative;
    height:60vh;
    
    display:flex;
    align-items:center;

}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    color:#fff;
    max-width:720px;
}
.hero-cta {
    margin:10px;
}
.hero-sub{
    font-size:1.1rem;
    margin:10px 0 10px;
}
.hero-micro{
    font-size:13px;
    margin:20px 0 20px;
}

.trust-strip{
    margin-top:22px;
    opacity:.9;
    font-size:15px;
}

.quick-book{
    text-align:center;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
    margin-top:30px;
}

.quick-grid select,
.quick-grid input{
    height:52px;
    border-radius:8px;
    border:1px solid #ddd;
    padding:0 14px;
    font-size:15px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
    margin-top:40px;
}

.why-grid,
.step-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:22px;
    margin-top:20px;
}

.why-card{
    background:#fff;
    padding:12px;
    border-radius:12px;
    box-shadow:0 8px 22px rgba(0,0,0,.05);
}

.final-cta{
    background:#0077ff;
    color:#fff;
    text-align:center;
}

.final-cta h2{
    color:#fff;
}

.mobile-bar{
    display:none;
}

@media(max-width:600px){

.mobile-bar{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    display:flex;
    z-index:999;
}

.call-btn,
.book-btn{
    flex:1;
    padding:16px;
    text-align:center;
    color:#fff;
    font-weight:700;
}

.call-btn{background:#5500ff;}
.book-btn{background:#0077ff;}

}

@media(max-width:600px){

h1{
    font-size:28px;
}

section{
    padding:8px;
}

.hero{
    height:70vh;
}

}

/* ===============================
   ELITE PROOF SECTION
================================ */
.elite-proof{

    padding:20px 10px;
    border-radius:10px;
    border:1px dashed #004f73;
    margin:5px;
    
}


.elite-proof-header{
    text-align:center;
    font-size:22px;
    font-weight:600;
    margin-bottom:28px;
    letter-spacing:.4px;
}

/* ===============================
   CAROUSEL CONTAINER
================================ */

.elite-carousel{
    max-width:1200px;
    margin:auto;
}

/* Track */

.elite-track-scroll{

    display:flex;
    gap:18px;

    overflow-x:auto;
    padding-bottom:14px;

    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;

    scrollbar-width:none;
}

.elite-track-scroll::-webkit-scrollbar{
    display:none;
}

.elite-slide{

    flex:0 0 80%;
    scroll-snap-align:start;

    border-radius:16px;
    overflow:hidden;

    background:#ffffff;   /* ← LIGHT surface */
    
    box-shadow:
        0 10px 30px rgba(0,0,0,.35);
}

.elite-slide{
    transition:transform .25s ease;
}

.elite-slide:hover{
    transform:translateY(-6px);
}

/* Tablet */

@media(min-width:640px){
    .elite-slide{
        flex:0 0 45%;
    }
}

/* Desktop */

@media(min-width:1024px){
    .elite-slide{
        flex:0 0 30%;
    }
}

.elite-card{
    display:block;
    text-decoration:none;
    color:#fff;
}

/* Image */

.elite-card img{

    width:100%;
    height:220px;
    object-fit:cover;

    transition:transform .6s ease;
}

.elite-card img{
    border-bottom:1px solid #e5e7eb;
}

/* Subtle professional hover */

.elite-card:hover img{
    transform:scale(1.06);
}

.elite-vendor{

    padding:10px 12px;

    font-size:14px;
    font-weight:600;

    color:#020617;
    background:#ffffff;

    border-top:1px solid #e5e7eb;
}

.elite-gallery-cta{

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #020617,
        #111827
    );
}

.elite-gallery-link{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    color:#000;
    text-decoration:none;
    padding:24px;
}

.elite-cta-content span{
    font-size:18px;
    font-weight:600;
    display:block;
    margin-bottom:6px;
}

.elite-cta-content small{
    opacity:.7;
}

/* ===============================
   GALLERY PAGE
================================ */

.gallery-page{
    padding:50px 20px;
    max-width:1200px;
    margin:auto;
}

/* Grid */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* Card */

.gallery-card{
    display:block;
    text-decoration:none;
    color:#020617;
}

/* Image */

.gallery-card img{

    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;

    border-radius:14px;

    transition:transform .35s ease;
}

.gallery-card:hover img{
    transform:scale(1.04);
}

/* Vendor */

.gallery-vendor{

    margin-top:8px;

    font-size:14px;
    font-weight:600;
}

@media(max-width:1100px){
    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:780px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:520px){
    .gallery-grid{
        grid-template-columns:1fr;
    }
}


/* ===============================
   BACK TO TOP BUTTON
================================ */

#backToTopBtn{

    position:fixed;
    bottom:30px;
    right:30px;

    width:48px;
    height:48px;

    border:none;
    border-radius:50%;

    background:#ff6b00;
    color:#fff;

    font-size:20px;
    font-weight:bold;

    cursor:pointer;

    box-shadow:
        0 8px 20px rgba(0,0,0,.25);

    opacity:0;
    visibility:hidden;

    transition:
        opacity .3s ease,
        transform .3s ease;

    z-index:1000;
}

/* Show state */
#backToTopBtn.show{
    opacity:1;
    visibility:visible;
}

/* Hover */
#backToTopBtn:hover{
    transform:translateY(-4px);
    background:#e55f00;
}

/* Mobile adjustment */
@media(max-width:600px){

    #backToTopBtn{
        bottom:20px;
        right:20px;
        width:42px;
        height:42px;
        font-size:18px;
    }

}

.movement{
padding:80px 20px;
background:#f8fafc;
text-align:center;
}

.movement-sub{
max-width:800px;
margin:auto;
color:#475569;
}

.movement-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

.movement-card{
background:#fff;
padding:30px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.25s;
}

.movement-card:hover{
transform:translateY(-6px);
}
.platform-note{
background:#0f172a;
color:white;
padding:14px;
text-align:center;
font-size:14px;
}

.contact-form{
display:flex;
flex-direction:column;
gap:14px;
margin-top:20px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border-radius:8px;
border:1px solid #ddd;
font-size:15px;
}

.contact-form input:focus,
.contact-form textarea:focus{
outline:none;
border-color:#0f172a;
}

.badge {
    display:inline-block;
    padding:2px 6px;
    border-radius:4px;
    font-size:0.75rem;
    margin-left:6px;
    font-weight:bold;
}

.vendor-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    border-radius: 50%;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Different badge colors */
.badge-top-rated {
    background-color: #ffd700; /* gold */
    color: #000;
}

.badge-preferred {
    background-color: #4caf50; /* green */
}

/* =========================================
   HERO SECTION
========================================= */

.workshop-hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.workshop-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.workshop-hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
}

/* =========================================
   BUTTONS
========================================= */

.btn-secondary {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-outline {
  background: #bbb;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: #ccc;
  color: #111827;
}

/* =========================================
   BENEFITS SECTION
========================================= */

.workshop-benefits {
  padding: 90px 0;
  background: #ffffff;
}

.workshop-benefits h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.card p {
  font-size: 14px;
  color: #4b5563;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* =========================================
   PRICING SECTION
========================================= */

.pricing-section {
  padding: 10px;
  margin:10px;
  background: #f3f4f6;
  text-align: center;
  border: 1px dashed #004f73;
  border-radius:20px;
}

.pricing-section h2 {
  font-size: 30px;
  
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 25px;
}

.pricing-card li {
  padding: 8px 0;
  font-size: 15px;
  color: #374151;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:40px;
}

.pricing-card{
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  text-align:left;
}

.pricing-card.highlight{
  border:2px solid #0f172a;
  transform:scale(1.03);
}

.pricing-card ul{
  list-style:none;
  padding:0;
  margin:20px 0;
}

.pricing-card ul li{
  margin-bottom:10px;
}

.pricing-note{
  font-size:14px;
  opacity:.8;
  margin-bottom:20px;
}

.pricing-movement{
  text-align:center;
  margin-top:30px;
  font-weight:500;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

  .workshop-hero h1 {
    font-size: 30px;
  }

  .workshop-hero p {
    font-size: 16px;
  }

 
  .btn-secondary,
  .btn-outline {
    width: 100%;
  }

  .workshop-benefits h2,
  .pricing-section h2 {
    font-size: 24px;
  }
}

.badge-new {
    background-color: #2196f3; /* blue */
}
