@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  --fontFamily: "Outfit", sans-serif;
  --primary-color: #ec2829;
  --df-red: #ec2829;
  --light-color: #ffffff;
  --dark-color: #000000;
  --card-title-fontSize: 48px;
  --fontSize: 16px;
  --transition: 0.5s;
  --boxShadow: rgba(114, 114, 114, 0.1) 0px 0px 8px;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --gray-color: #f1f5f9;
  --secondary-color: #f97316;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
}

/* ------------------------------- Browser Reset -------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
html:focus-within {
  scroll-behavior: smooth;
}
html {
  scroll-padding-top: 80px; /* Matches the navbar height */
  scroll-behavior: smooth;
}

a:focus,
a:hover {
  outline: none;
  color: inherit;
}

a {
  color: inherit;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #111111;
  background-color: var(--light-color);
  font-family: var(--fontFamily);
  font-weight: 500;
}

p {
  font-family: var(--fontFamily);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-weight: 500;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
  z-index: 1;
}

/* Browser Reset End */

/* ----------------------------------------- Common CSS --------------------------------------------- */
.section__padding {
  padding: 60px 0;
}

.no__pt {
  padding-top: 0 !important;
}

.no__pb {
  padding-bottom: 0 !important;
}




@media (max-width: 992px) {
  .section__padding {
    padding: 2.5rem 0;
  }

}

@media (max-width: 576px) {
  .section__padding {
    padding: 1.875rem 0;
  }
 
}

.common__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 10px;
  width: 167px;
  height: 50px;
  background: var(--light-color);
  color: var(--primary-color);
  border-radius: 80px;
  flex: none;
  order: 1;
  flex-grow: 0;
  font-weight: 600;
  transition: all 0.2s ease-in;
  border: none;
}

.common__btn:hover {
  background: #ffffff;
  color: #3b16c7;
}

.heading__section {
  margin-bottom: 20px;
}

.heading__section h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.heading__section p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--fontFamily);
}

/* Toast Container */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
}

@media (max-width: 767.98px) {
  .heading__section h2 {
    font-size: 28px;
  }
}

/* Owl slider custom styles */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.carousel-prev,
.carousel-next {
  width: 32px;
  height: 32px;
  background-color: var(--light-color);
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}

/* Common CSS End */
/* Top Navbar */
.top__nav {
  padding: 8px 0;
  background: var(--light-color);
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 999;
}

.logo img {
  height: 55px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.nav__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-contact {
  background-color: #ef4444;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.nav-contact:hover {
  background-color: #dc2626;
  color: #ffffff;

  transform: translateY(-2px);
}

.logo {
  color: #b80000;
  font-weight: bold;
  font-size: clamp(25px, 6vw, 28px);
  text-decoration: none;
}

.nav__right {
  display: flex;
  align-items: center;
}

.contact__toggle__wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icons {
  display: flex;
  gap: 15px;
}

.nav-icons .common__btn {
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50px;
  height: 49px;
  width: auto;
  font-size: 18px;
  font-weight: 500;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.nav-icons .common__btn span img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.offcanvas__btn__wrap .common__btn {
  height: 42px;
  font-size: 15px;
}

.offcanvas__btn__wrap .common__btn span img {
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

.icon-link img {
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}

.icon-link:hover img {
  opacity: 0.8;
}

.contact-info h6 {
  font-size: 16px;
  font-weight: 600;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background-color: #ffe8e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-circle img {
  width: 20px;
  height: 20px;
}
.icon-circle:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact-info a {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 575px) {
  .nav-contact {
    padding: 8px 20px;
    font-size: 12px;
  }

  .logo img {
    height: 40px;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
}

/* Tablet-specific styling */
@media (min-width: 576px) and (max-width: 991px) {
  .nav__wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav__left {
    order: 1;
    flex: 0 0 auto;
  }

  .nav__right {
    order: 2;
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
  }

  .contact__toggle__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .contact-info__wrapper {
    display: flex !important;
    justify-content: flex-end;
    flex: 1 1 auto;
  }

  .nav-icons {
    order: 3;
  }

  .nav-toggle {
    display: block;
  }
}

/* Mobile-specific styling */
@media (max-width: 575px) {
  .icon-circle {
    width: 30px;
    height: 30px;
  }

  .icon-circle img {
    width: 16px;
    height: 16px;
  }

  .contact-info h6 {
    font-size: 14px;
  }

  .contact-info a {
    font-size: 12px;
  }

  .nav-toggle {
    display: block;
  }
}

/* Desktop-specific styling */
@media (min-width: 992px) {
  .nav__wrapper {
    justify-content: space-between;
  }

  .nav__left {
    order: 1;
  }

  .nav__right {
    order: 2;
  }

  .contact__toggle__wrapper {
    flex-direction: row;
    justify-content: flex-end;
    gap: 15px;
  }

  .contact-info__wrapper {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: none;
  }
}

/* Toggle Button */
.nav-toggle {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  display: none;
}

.nav-toggle i {
  font-size: 30px;
  font-weight: 600;
  color: #333;
}
/* Doorstep Fix Offcanvas Styles */
.doorstep-offcanvas {
  width: 300px;
  max-width: 85%;
  background-color: #ffffff;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.05);
  border-right: none;
  transition: transform 0.3s ease-in-out;
}

.doorstep-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem 1.5rem;
  background-color: #f9fafb;
}

.doorstep-offcanvas .doorstep-logo {
  height: 36px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.doorstep-offcanvas .btn-close-custom {
  font-size: 0.8rem;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.doorstep-offcanvas .btn-close-custom:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.08);
}

/* Navigation */
.doorstep-nav {
  padding: 0.75rem 0;
}

.doorstep-nav .nav-item {
  margin-bottom: 0.15rem;
}

.doorstep-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.75rem;
  color: #4a5568;
  font-weight: 500;
  transition: all 0.25s ease;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.doorstep-nav .nav-link i:first-child {
  width: 20px;
  text-align: center;
  font-size: 1.05rem;
  color: #718096;
  transition: all 0.25s ease;
}

.doorstep-nav .nav-link i:last-child {
  font-size: 0.8rem;
  color: #cbd5e0;
  transition: all 0.25s ease;
}

.doorstep-nav .nav-link span {
  transition: all 0.25s ease;
}

.doorstep-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: #3b82f6;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.doorstep-nav .nav-link.active {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.05);
}

.doorstep-nav .nav-link.active::before {
  transform: translateX(0);
}

.doorstep-nav .nav-link.active i:first-child {
  color: #3b82f6;
}

.doorstep-nav .nav-link:hover {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.03);
}

.doorstep-nav .nav-link:hover i:first-child {
  color: #3b82f6;
}

.doorstep-nav .nav-link:hover i:last-child {
  color: #3b82f6;
  transform: translateX(2px);
}

/* Call Button Section */
.bg-light-soft {
  background-color: #f8fafc;
}

.btn-call {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  font-weight: 500;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(59, 130, 246, 0.2);
  border: none;
}

.btn-call:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.btn-call:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(59, 130, 246, 0.2);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .doorstep-offcanvas {
    width: 280px;
  }

  .doorstep-nav .nav-link {
    padding: 0.75rem 1.5rem;
  }
}
/* Main Navbar (Desktop) */
.navbar {
  background: transparent;
  position: absolute;
  width: 100%;
  top: 81px;
  left: 0;
  z-index: 99;
  padding: 25px 10px;
  backdrop-filter: blur(300px);
}

.navbar-nav {
  gap: 20px;
}

.navbar-nav .nav-link {
  color: #ececec;
  font-size: 1rem;
  font-weight: 500;
  padding: 20px 0;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #cfcaca;
}

.pages-header .navbar {
  background: var(--light-color);
  border: 1px solid #948c8c33;
  top: 75px;
  padding: 12px;
}

.pages-header .navbar-nav .nav-link {
  color: #000000;
}

.pages-header .sticky-nav {
  top: 0 !important;
}

/* Sticky Navbar */
.sticky-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 0 !important;
  background: var(--light-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease forwards;
  z-index: 1000;
}

.sticky-nav .nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.sticky-nav .nav-link:hover {
  color: #000000;
}

.sticky-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ec2526, #ec2526);
  transition: width 0.3s ease;
}

.sticky-nav .nav-link:hover::after {
  width: 100%;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Mobile Sticky Header */
.mobile-sticky-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--light-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  padding: 10px 15px;
  animation: slideDown 0.5s ease forwards;
}

.mobile-sticky-header .mobile-sticky-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-sticky-header .mobile-sticky-logo {
  max-height: 40px;
}

.mobile-sticky-header .mobile-sticky-search {
  flex: 1;
  margin: 0 10px;
  position: relative;
}

.mobile-sticky-header .mobile-sticky-search input {
  width: 100%;
  border-radius: 25px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 14px;
}

.mobile-sticky-header .mobile-sticky-search .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.mobile-sticky-header .mobile-sticky-menu {
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  padding: 5px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  #main-navbar {
    display: none;
  }

  .search__wrapper {
    display: block;
  }

  .nav__wrapper {
    flex-wrap: wrap;
  }

  .search__container {
    max-width: 100%;
  }
  /* Show mobile sticky header when scrolled on mobile */
  .show-mobile-sticky .mobile-sticky-header {
    display: block;
  }

  /* Hide top nav when mobile search is active */
  .search-active .top__nav {
    visibility: hidden;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .search__wrapper {
    display: none;
  }

  #main-navbar {
    display: flex;
  }

  .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-sticky-header {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .top__nav {
    padding: 10px 0;
  }

  .nav__left {
    gap: 10px;
  }

  .nav-icons {
    gap: 10px;
  }

  .logo {
    font-size: clamp(18px, 4vw, 22px);
  }

  .search-brand-dropdown,
  .searchDropdownGlobally {
    max-height: 200px; /* Smaller height for smaller screens */
  }
}

/* ------------------ Floating Buttons Container -------------------- */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.floating__btn {
  color: white !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* WhatsApp Button */
.whatsapp-button {
  background-color: #25d366;

  animation: pulseAnimation 2s infinite ease-in-out;
}

/* Call Button */
.call-button {
  font-size: 23px;
  background-color: #287cd6;
  animation: pulseAnimation 2s infinite ease-in-out;
}

/* Background Circle for WhatsApp */
.whatsapp-button::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  z-index: -1;
  animation: backgroundPulse 2s infinite ease-in-out;
}

/* Background Circle for Call */
.call-button::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 123, 255, 0.3);
  border-radius: 50%;
  z-index: -1;
  animation: backgroundPulse 2s infinite ease-in-out;
}

/* Hover Effects */
.whatsapp-button:hover,
.call-button:hover {
  transform: scale(1.1);
}

/* WhatsApp Pulse Animation */
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Background Pulse Animation */
@keyframes backgroundPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 568px) {
  .floating__btn {
    width: 50px;
    height: 50px;
  }
}

/* Doorstep Hero section */
/* ===== HERO SECTION ===== */

.main-hero {
  padding: 80px 0;
  padding-bottom: 0px;
  background-color: #ffffff;
}

/* Text Content */
.main-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.main-hero p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 15px;
}

/* Button */
.main-hero  button {
  background-color: #ef4444;
  margin-top: 5px;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.main-hero button:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
}

/* Image Wrapper */
.main-hero-image {
  background: #f8fafc;
  border-radius: 18px;
  padding: 24px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.main-hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.main-hero-image:hover img {
  transform: scale(1.03);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .main-hero {
    padding: 60px 0;
    text-align: center;
  }

  .main-hero p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .main-hero h1 {
    font-size: 32px;
  }

    .main-hero {
   padding-bottom: 30px;
  }

  .main-hero p {
    font-size: 15px;
  }
}

/* ==========================================================================
   Services Section Start
   ========================================================================== */
.services-section {
  background-color: var(--light-color, #f8f9fa);
  position: relative;
  overflow: hidden;
}

.services-section h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  letter-spacing: -0.025em;
  margin-bottom: 3rem;
  position: relative;
  text-transform: capitalize;
}

.services-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  background: #fff;
  border-radius: 20px;
  max-width: 395px;
  width: 100%;
  /* padding: 1.5rem; */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.service-card:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-pricing {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.service-card:hover img {
  transform: scale(1.03);
}

.service-card h5 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: left;
}

.services-list li {
  margin-bottom: 0;
}

.services-list li {
  font-size: 0.95rem;
  color: #000000;
  margin-bottom: 0.75rem;
  display: flex;
}

.sevice-content {
  padding: 1rem 1.5rem;
}

.service-card-img {
  width: 100%;
  padding: 1.5rem;
  padding-bottom: 0;
}

.services-list li i {
  color: var(--primary-color, #0056b3);
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.service-card .btn-book {
  background-color: #ec2829;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.service-card .btn-book:hover {
  background-color: #bd1a1a;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 2rem;
  }

  .service-card img {
    height: 180px;
  }

  .service-card h5 {
    font-size: 1.1rem;
  }

  .services-list li {
    font-size: 0.9rem;
  }

  .service-card .btn-book {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 2rem 0;
  }

  .services-section h2 {
    font-size: 1.75rem;
  }

  .service-card img {
    height: auto;
  }

  .service-card h5 {
    font-size: 1rem;
  }

  .services-list li {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Services Section End
   ========================================================================== */

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: #ffffff;
}

.contact-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

/* Contact Items */
.contact-item .icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ef4444;
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-item h5 {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Map */
.map-wrapper {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-wrapper {
    padding: 28px 20px;
  }

  .map-wrapper {
    height: 240px;
  }
}



/* ==========================================================================
   Contact us Section Start
   ========================================================================== */
.contact-section {
  position: relative;
  z-index: 999;
}

.custom-select-wrapper {
  position: relative;
  display: block;
}

.custom-select-wrapper::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--color-text);
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 14px;
  z-index: 2;
}

.custom-select-wrapper:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
  color: var(--color-text);
}

.custom-select-wrapper:hover::after {
  color: var(--color-text);
}

.contact-section .form-control option {
  padding: 10px;
  background: #ffffff;
  color: #2c2c2c;
  border: none;
}

.contact-section .form-control option:hover {
  background: rgba(196, 150, 96, 0.1);
}

.contact-section .form-control option:disabled {
  color: #999;
  background: #f8f9fa;
}

.contact-section .form-control:disabled {
  background-color: #f8f9fa;
  opacity: 0.6;
  cursor: not-allowed;
}

.custom-select-wrapper.disabled::after {
  color: #999;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.get-in-touch-badge {
  display: inline-block;
  background: #ec2829;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(212, 165, 116, 0.3);
  margin-bottom: 20px;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 30px;
}

.contact-section .form-group {
  margin-bottom: 20px;
}

.contact-section .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.3s ease;
  height: auto;
}

#enquiryModal input::placeholder {
  font-size: 13px;
}

.modal-body {
  padding: 0;
  overflow: hidden;
  border-radius: 15px;
  overflow-y: auto;
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

.modal-body .contact-card {
  border-radius: 0px;
  padding: 30px;
}

.modal-header {
  background: var(--color-background) !important;
  color: var(--color-text);
}

.modal-header .btn-close {
  color: var(--color-text);
}

.contact-section .form-control:focus {
  border-color: var(--color-text);
  box-shadow: 0 0 0 0.2rem rgba(196, 150, 96, 0.1);
}

.contact-section .form-control.error {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

.contact-section .form-control.success {
  border-color: #28a745;
  background-color: rgba(40, 167, 69, 0.05);
}

.error-message {
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  background: #ec2829;
  border: none;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  display: none;
  animation: slideIn 0.5s ease;
}

.success-message.show {
  display: block;
}

.character-count {
  font-size: 12px;
  color: #666;
  text-align: right;
  margin-top: 5px;
}

.character-count.error {
  color: #dc3545;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.select-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  overflow: hidden;
}

.placeholder-text {
  color: #6c757d;
  font-size: 13px;
}

.selected-items-display {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 100%;
  overflow: hidden;
}

.selected-item-tag {
  background: #c49660;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
}

.selected-count-text {
  color: #2c2c2c;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  color: #2c2c2c;
  font-size: 14px;
  flex-shrink: 0;
}

.dropdown-arrow.rotated {
  transform: rotate(180deg);
}

.dropdown-actions {
  padding: 10px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  gap: 10px;
  background: #f8f9fa;
}

.btn-select-all,
.btn-clear-all {
  flex: 1;
  padding: 6px 12px;
  border: 1px solid #c49660;
  background: transparent;
  color: #c49660;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-select-all:hover,
.btn-clear-all:hover {
  background: #c49660;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }

  .modal-body .contact-section {
    padding: 0;
  }

  .custom-select-wrapper::after {
    right: 12px;
    font-size: 14px;
  }

  .contact-card {
    padding: 40px 30px;
    margin: 30px auto;
  }

  .modal-body .contact-card {
    margin: 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .selected-item-tag {
    max-width: 60px;
    font-size: 10px;
  }

  .select-content {
    gap: 4px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }

  .modal-body .contact-section {
    padding: 0;
  }

  .contact-card {
    padding: 30px 20px;
    margin: 20px auto;
  }

  .modal-body .contact-card {
    margin: 0;
  }

  .contact-title {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }

  .get-in-touch-badge {
    font-size: 13px;
  }

  .selected-item-tag {
    max-width: 50px;
    font-size: 9px;
    padding: 1px 6px;
  }
}

/* Accessibility Improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-control:focus,
.product-select-header:focus {
  outline: 2px solid #c49660;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ==========================================================================
      Contact us Section End
   ========================================================================== */



   /* =====================================================
   Brands Section Start
   ===================================================== */

.ds-brands-section {
  padding: 80px 0;
  padding-bottom: 40px;
  background-color: #ffffff;
}

/* Header */
.ds-brands-header {
  max-width: 600px;
  margin: 0 auto;
}

.ds-section-tag {
  font-size: 13px;
  font-weight: 600;
  color: #ec2829;
  display: inline-block;
  margin-bottom: 6px;
}

.ds-brands-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f0d0d;
  margin-bottom: 40px;
}

/* Brand Card */
.ds-brand-card {
  height: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: auto;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.ds-brand-card img {
  height: 80px;
  max-width: 100%;
  object-fit: contain;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

/* Hover Effect */
.ds-brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.ds-brand-card:hover img {
  opacity: 1;
}

@media (max-width: 1024px) {
  .ds-brand-card {
    height: 100x;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .ds-brand-card {
    height: 75px;
  }

  .ds-brands-header h2 {
    font-size: 26px;
  }

  .ds-brand-card img {
    height: auto;
  }

  .ds-brands-section {
  padding: 20px 0;
}

}

/* =====================================================
   Brands Section End
   ===================================================== */


   /*=========================================== Brand Choose Section================================================ */

.brand__section {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.repair__brand__section {
  margin-top: 70px;
}

.brand__card {
  height: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: auto;
}
.brand__card img {
  height: 80px;
  max-width: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

@media (max-width: 1024px) {
  .brand__card {
    height: 100x;
  }
}
.brand__card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .brand__card {
    height: 95px;
  }
  .brand__card img {
    height: auto;
  }
  .repair__brand__section {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .brand__card {
    height: 75px;
  }
}
