:root {
  --red: #ad171c;
  --red-lg: #cb3c43;
  --bg: #11151c;
  --black: #000000;
  --white: #ffffff;
  --text-muted: #9aa3b2;
  --white-dim: rgba(255, 255, 255, 0.07);
  --font-display: "Jost", sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f8fafc;
  overflow: visible;
}

.site-top-strip {
  background: #f1f5f9;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  line-height: 1;
}

.site-top-strip__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.45rem 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-top-strip__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.site-top-strip__phone:hover {
  color: var(--red);
}

.site-top-strip__phone i {
  font-size: 0.75rem;
  color: var(--red);
}

@media (max-width: 575.98px) {
  .site-top-strip {
    font-size: 0.75rem;
  }

  .site-top-strip__inner {
    justify-content: center;
    padding: 0.4rem 16px;
  }
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
  padding: 0 24px;
}

/* ---------- Logo ---------- */
.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-image {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* for mobile logo  css */
 /* Hide on Desktop */
.mobile-account{
    display:none;
}

@media (max-width:991.98px){

    .mobile-account{
        display:flex;
        align-items:center;
        position:relative;
        margin-left:auto;
    }

    .mobile-account-link{
        display:flex;
        align-items:center;
        justify-content:center;
        color:#222;
        text-decoration:none;
    }

    .mobile-account-link i{
        font-size:22px;
    }

    .mobile-account-dropdown{
        position:absolute;
        top:50px;
        right:0;
        width:220px;
        background:#fff;
        border:1px solid #eee;
        border-radius:10px;
        box-shadow:0 10px 30px rgba(0,0,0,.12);
        display:none;
        z-index:9999;
    }

    .mobile-account-dropdown::before{
        content:"";
        position:absolute;
        top:-8px;
        right:14px;
        width:14px;
        height:14px;
        background:#fff;
        border-left:1px solid #eee;
        border-top:1px solid #eee;
        transform:rotate(45deg);
    }

    .mobile-account-dropdown a{
        display:flex;
        align-items:center;
        gap:10px;
        padding:12px 16px;
        color:#333;
        text-decoration:none;
        font-size:15px;
        transition:.3s;
    }

    .mobile-account-dropdown a:hover{
        background:#f8f8f8;
        color:#c40018;
    }

    .mobile-account-dropdown .divider{
        height:1px;
        background:#eee;
        margin:5px 0;
    }

    .mobile-account:hover .mobile-account-dropdown{
        display:block;
    }
     .nav-container{
        display:flex;
        align-items:center;
        justify-content:space-between;
        position:relative;
        
    }

    .nav-left{
        display:flex;
        align-items:center;
    }

    .hamburger{
        display:flex;
        order:1;
    }

    .logo{
        position:absolute;
        left:50%;
        transform:translateX(-50%);
    }

    .logo img{
        height:38px;
        width:auto;
    }
}

 
/* end */
/* ---------- Primary Nav & Hover Dropdowns ---------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  height: 100%;
}

/* Dropdown Wrapper for Hover Stability */
.dropdown-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

/* Let the Repairs mega panel position against the full sticky header
   (nav + top phone strip), not only the 72px nav row. */
.dropdown-wrapper--mega {
  position: static;
}

.nav-link {
  color: var(--black);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 30px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link svg {
  transition: transform var(--transition);
}

/* Active/Hover Main Links States */
/* .dropdown-wrapper:hover .nav-link,
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
} */

.dropdown-wrapper:hover .nav-link svg {
  transform: rotate(180deg);
}

/* ---------- Premium Mega Menu (Repairs) ---------- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 95%;
  max-width: 1350px;
  margin-top: 0;
  background: #ffffff;
  border: none;
  border-radius: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 30px;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.5fr 1.5fr 1.5fr;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
  z-index: 1100;
}

/* Magic Connection Bridge */
.mega-menu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.dropdown-wrapper--mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #5a6172;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-link {
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
  transition: color var(--transition);
  display: block;
}

.mega-link:hover {
  color: var(--red);
}

.mega-see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-top: 2px;
  display: inline-block;
}

/* Device Left Column Panel */
.device-panel {
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.device-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition);
}

.device-btn:hover,
.device-btn.active {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.device-btn i {
  margin-right: 8px;
  font-size: 18px;
}

/* Get Started Sidebar Cards */
.promo-card {
  background: #efc6c65e;
;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.promo-card p {
  font-size: 13px;
  color: #5a6172;
  line-height: 1.5;
  margin-bottom: 14px;
}

.btn-green-sm {
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition);
}

.btn-green-sm:hover {
  background: var(--red-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5a6172;
  margin-bottom: 8px;
}

.trust-item i {
  margin-right: 8px;
  font-size: 18px;
}

/* ---------- Account Dropdown ---------- */
.account-dropdown {
  position: absolute;
  top: 65px;
  right: 0;
  width: 220px;
  background: #fff;
  border-radius: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.account-dropdown::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 100%;
  height: 20px;
}

.dropdown-wrapper:hover .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-dropdown a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  border-radius: 8px;
  transition: background var(--transition);
}

.account-dropdown a i {
  margin-right: 8px;
  font-size: 16px;
}

.account-dropdown a:hover {
  background: #f1f5f9;
  color: var(--red);
}

.account-dropdown .divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 6px 0;
}

/* ---------- Search & Action Buttons ---------- */
.search-box {
  flex: 1 1 auto;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 91, 91, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0 14px;
  height: 40px;
  transition: all var(--transition);
  margin-left: auto;
  position: relative;
}

.search-box:focus-within {
  background: rgba(220, 66, 66, 0.08);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(173, 23, 28, 0.2);
}

.search-box svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-box:focus-within svg {
  color: #5a6172;
}

.search-box input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--white);
}

.search-box:focus-within input {
  color: var(--black);
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 300px;
  max-height: 360px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(17, 21, 28, 0.14);
  z-index: 1200;
}

.search-suggest__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: #11151c;
  border-bottom: 1px solid #f1f3f5;
}

.search-suggest__item:last-child {
  border-bottom: none;
}

.search-suggest__item:hover,
.search-suggest__item.is-active {
  background: rgba(173, 23, 28, 0.06);
}

.search-suggest__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f3f4f6;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.search-suggest__text {
  flex: 1;
  min-width: 0;
}

.search-suggest__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggest__meta {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggest__arrow {
  color: #9ca3af;
  flex-shrink: 0;
  font-size: 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  height: 100%;
}

.book-btn {
  background: var(--red);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 30px;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.book-btn:hover {
  background: var(--red-lg);
}

/* ---------- Hamburger Menu Button ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1200;
}

.hamburger .bar {
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

/* Animated Hamburger State when active */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- MOBILE OFFCANVAS DRAWER & ACCORDION STYLE ---------- */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background: #ffffff;
  z-index: 1100;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
  transition: left var(--transition);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.offcanvas-menu.open {
  left: 0;
}

.offcanvas-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}

.offcanvas-header .logo-img {
  height: 28px;
}

.close-btn {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--black);
}

.offcanvas-body {
  padding: 20px 0;
}

.offcanvas-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid #f8fafc;
}

.offcanvas-nav-link:hover {
  background: #f8fafc;
  color: var(--red);
}

.submenu-chevron {
  transition: transform var(--transition);
}

.submenu-chevron.rotate-chevron {
  transform: rotate(180deg);
}

/* Accordion Panels Stacked */
.offcanvas-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition) ease-out;
  background: #f8fafc;
}

.offcanvas-submenu.expanded {
  max-height: 1200px;
  /* high value for complete show */
  transition: max-height var(--transition) ease-in;
}

.submenu-category {
  padding: 15px 20px 5px 20px;
}

.sub-title {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #5a6172;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.sub-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub-links a {
  font-size: 14px;
  color: #334155;
  font-weight: 500;
  display: block;
  padding: 4px 0;
}

.sub-links a:hover {
  color: var(--red);
}

.mobile-see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}

.mobile-actions {
  padding: 20px;
}

.mobile-book-btn {
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
}

/* ---------- Responsive Screen Adjustment ---------- */
@media (max-width: 1024px) {
  .nav-links,
  .book-btn,
  .dropdown-wrapper {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .search-box {
    max-width: 250px;
  }
}

@media (max-width: 560px) {
  .nav-container {
    height: auto;
    padding: 12px 16px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .search-box {
    order: 10;
    flex: 1 1 100%;
    max-width: none;
    margin: 0;
  }
}
/* end */

/* -------------------------Home page css------------------------------------ */

/* home page hero section css  */
/* --- Hero Video Section Styling --- */
.hero-video-container {
  position: relative;
  height: 65vh;
  min-height: 400px;
  overflow: hidden;
  background-color: #000;
}

/* Background Video */
.hero-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
}

/* Overlay Text content */
.hero-overlay-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 10%;
  color: #ffffff;
  text-align: left;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle span:first-child {
    font-size: 25px;
    font-weight: 500;
}

.hero-subtitle .small-text {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

/* Call To Action Buttons */
.cta-group {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.btn-learn {
  font-weight: 600;
  text-decoration: none !important;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.btn-learn:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn-buy {
  background-color: #ad171c;
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.btn-buy:hover {
  background-color: #f37077;
  color: #ffffff;
}

/* Mobile Adjustments */

/* @media (max-width: 768px) {
  .hero-video-container {
    height: 50vh;
  }

  .hero-overlay-content {
    align-items: center;
    padding-right: 0;
    text-align: center;
    justify-content: center;
  }

  .cta-group {
    justify-content: center;
    width: 100%;
  }
} */

/* Tablet */
@media (max-width: 991.98px) {

    .hero-video-container{
        height: 60vh;
        min-height: 500px;
    }

    .hero-overlay-content{
        padding-right: 0;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-title{
        font-size: 42px;
        margin-bottom: 15px;
        line-height: 1.2;
        text-align: left;
    }

    .hero-subtitle{
        align-items: center;
        text-align: start;
        margin-bottom: 20px;
    }

    .hero-subtitle span:first-child{
        font-size: 22px;
    }

    .hero-subtitle .small-text{
        font-size: 15px;
    }

    .cta-group{
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .hero-video-container{
        height: 65vh;
        min-height: 450px;
    }

    .hero-title{
        font-size: 32px;
        text-align: start;
    }

    .hero-subtitle span:first-child{
        font-size: 18px;
    }

    .hero-subtitle .small-text{
        font-size: 13px;
    }

    .cta-group{
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-group .btn{
        width: 100%;
        max-width: 260px;
        text-align: center;
        margin-right: 0 !important;
    }
}
/* end */

/*featured section css  */
/* --- Trust Badges Section Styling --- */
.trust-badges-section {
  background-color: #ffffff;
  padding: 30px 15px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.badges-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 10px;
  position: relative;
}

/* Dividers between columns (Desktop Only) */
.badge-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.08);
}

.badge-icon-box {
  background-color: rgba(173, 23, 28, 0.05);
  color: #ad171c;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.badge-item:hover .badge-icon-box {
  background-color: #ad171c;
  color: #ffffff;
  transform: translateY(-3px);
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1f29;
  margin-bottom: 2px;
  line-height: 1.2;
}

.badge-desc {
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
  line-height: 1.3;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
  .badges-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .badge-item::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .trust-badges-section {
    margin-top: 20px;
    padding: 15px;
  }

  .badges-wrapper {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 15px;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .badges-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* end */

/* service css start */
/* ===== Service icon cards ===== */

.dc-service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  background: var(--white);
  border: 1px solid #e1e5ea;
  border-radius: var(--radius-lg);
  padding: 26px 18px 22px;
  text-decoration: none;
  color: #11151c;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.dc-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.45s ease;
}

.dc-service-card:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.dc-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px -18px rgba(17, 21, 28, 0.25);
  border-color: #11151c;
}

.dc-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f4f6;
  border: 1px solid #e1e5ea;
  color: #11151c;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.dc-service-card:hover .dc-icon-wrap {
  background: #ffe9dc;
  color: var(--red);
  transform: scale(1.07);
  box-shadow: 0 0 0 8px rgba(255, 122, 51, 0.1);
}

.dc-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dc-service-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  margin: 0;
}

.dc-service-desc {
  font-size: 13.3px;
  color: #4f5a68;
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

.dc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #11151c;
  transition: color 0.3s ease;
}

.dc-arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.dc-service-card:hover .dc-arrow {
  color: var(--red-lg);
}

.dc-service-card:hover .dc-arrow svg {
  transform: translateX(4px);
}

/* ==========================================
       2. BOTTOM PROMO BANNERS DESIGN (NEW LOOK)
       ========================================== */

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 230px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px -16px rgba(0, 0, 0, 0.2);
}

.theme-repair {
  background: linear-gradient(150deg, #fdedef, #fbe0e3);
}

.theme-protect {
  background: linear-gradient(150deg, #eef0f6, #e6e9f2);
}

.theme-support {
  background: linear-gradient(150deg, #f2f2f4, #e8e8eb);
}

.visual-stage {
  position: relative;
  flex: 0 0 42%;
  height: 100%;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-stage::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--red);
  filter: blur(28px);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.service-card:hover .visual-stage::before {
  opacity: 0.22;
  transform: scale(1);
}

.visual-main {
  position: relative;
  z-index: 3;
  width: 122px;
  height: 122px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid #fff;
  box-shadow: 0 14px 26px -8px rgba(0, 0, 0, 0.32);
  transition:
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.55s ease;
}

.service-card:hover .visual-main {
  transform: scale(1.1) rotate(-3deg) translateY(-4px);
  box-shadow: 0 22px 36px -10px rgba(0, 0, 0, 0.4);
}

.floatie {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.28);
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: bob 3.6s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.floatie-2 {
  animation-delay: 0.5s;
}

.service-card:hover .floatie {
  animation-play-state: paused;
}

/* ---- Repair artwork layout ---- */
.card-repair .floatie-1 {
  width: 54px;
  top: 6%;
  left: 2%;
  transform: rotate(-14deg);
}

.card-repair .floatie-2 {
  width: 50px;
  top: 68%;
  right: 2%;
  transform: rotate(10deg);
}

.card-repair:hover .floatie-1 {
  transform: translate(-15px, -15px) rotate(-26deg) scale(1.06);
}

.card-repair:hover .floatie-2 {
  transform: translate(-15px, 15px) rotate(22deg) scale(1.06);
}

/* ---- Protect artwork layout ---- */
.card-protect .floatie-1 {
  width: 54px;
  top: 6%;
  left: 10%;
  transform: rotate(10deg);
}

.card-protect .floatie-2 {
  width: 50px;
  top: 68%;
  right: 2%;
  transform: rotate(-8deg);
}

.card-protect:hover .floatie-1 {
  transform: translate(15px, -15px) rotate(22deg) scale(1.06);
}

.card-protect:hover .floatie-2 {
  transform: translate(15px, 15px) rotate(-20deg) scale(1.06);
}

/* ---- Support artwork layout ---- */
.card-support .floatie-1 {
  width: 54px;
  top: 6%;
  left: 2%;
  transform: rotate(-10deg);
}

.card-support .floatie-2 {
  width: 50px;
  top: 68%;
  right: 2%;
  transform: rotate(10deg);
}

.card-support:hover .floatie-1 {
  transform: translate(-15px, -15px) rotate(-22deg) scale(1.06);
}

.card-support:hover .floatie-2 {
  transform: translate(15px, 15px) rotate(20deg) scale(1.06);
}

.service-content {
  position: relative;
  z-index: 3;
  flex: 1;
  padding: 28px 26px;
}

.service-content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 8px;
}

.service-content p {
  color: #5b5b63;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.btn-brand {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 0.7rem;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.btn-brand:hover,
.btn-brand:focus-visible {
  background: var(--red-lg);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -8px rgba(227, 30, 36, 0.55);
}

/* ===========================================================
       RESPONSIVE — MOBILE FIXES
    =========================================================== */
@media (max-width: 767.98px) {
  .service-card {
    flex-direction: column;
    min-height: auto;
    overflow: hidden;
    /* Prevent floating images from breaking container */
  }

  .visual-stage {
    flex-basis: auto;
    width: 100%;
    height: 100px;
    min-height: auto;
    margin-top: 10px;
  }

  .visual-main {
    width: 90px;
    height: 90px;
  }

  .floatie {
    width: 44px !important;
    height: 44px !important;
  }

  /* Mobile animations adjustments for floaties */
  .card-repair .floatie-1 {
    top: 15%;
    left: 15%;
  }

  .card-repair .floatie-2 {
    top: 50%;
    right: 15%;
  }

  .card-protect .floatie-1 {
    top: 15%;
    right: 15% !important;
  }

  .card-protect .floatie-2 {
    top: 50%;
    right: 15%;
  }

  .card-support .floatie-1 {
    top: 15%;
    left: 15%;
  }

  .card-support .floatie-2 {
    top: 50%;
    right: 15%;
  }

  .card-repair:hover .floatie-1,
  .card-support:hover .floatie-1 {
    transform: translate(-10px, -10px) rotate(-15deg);
  }

  .card-repair:hover .floatie-2 {
    transform: translate(-10px, 10px) rotate(15deg);
  }

  .card-protect:hover .floatie-1 {
    transform: translate(10px, -10px) rotate(15deg);
  }

  .card-protect:hover .floatie-2,
  .card-support:hover .floatie-2 {
    transform: translate(10px, 10px) rotate(-15deg);
  }

  .service-content {
    text-align: center;
    padding: 12px 18px 24px;
  }

  /* Bottom icon cards fixing for mobile grid text overlap */
  .dc-service-card {
    padding: 16px 12px 14px;
    gap: 10px;
  }

  .dc-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .dc-icon-wrap svg {
    width: 18px;
    height: 18px;
  }

  .dc-service-title {
    font-size: 13.5px;
  }

  .dc-service-desc {
    font-size: 11.5px;
    line-height: 1.4;
  }

  .dc-arrow {
    font-size: 10px;
  }
}

@media (max-width: 991px) {
  .dc-section {
    padding: 40px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .visual-main,
  .floatie,
  .btn-brand,
  .visual-stage::before,
  .dc-section * {
    transition: none !important;
    animation: none !important;
  }
}
/* end */

/*  Choose Your Repair Option section css  */
.service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
}

.service-card-img {
  width: 50%;
  min-width: 140px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card-icon {
  color: #cc0000;
  font-size: 20px;
}

.service-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 0;
}

.service-card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
  margin-bottom: 0;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #cc0000;
  color: #cc0000;
  background: transparent;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
  width: fit-content;
}

.service-card-btn:hover {
  background: #cc0000;
  color: #fff;
}

/* Tablet */
@media (max-width: 850px) {
  .service-card-img {
    width: 110px;
    min-width: 110px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .service-card {
    flex-direction: column;
  }
  .service-card-img {
    width: 100%;
    min-width: 0;
    height: 160px;
  }
  .service-title {
    font-size: 22px;
  }
}
/* end */

/* featured work section css start */

a {
  text-decoration: none;
}

/* ===== Featured cards ===== */
.feature-card {
  display: block;
  color: inherit;
}
.feature-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}
.feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.feature-card:hover .feature-thumb img {
  transform: scale(1.05);
}
.feature-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin: 0.85rem 0 0.25rem;
}
.feature-tag.is-smartphone {
  color: var(--red);
}
.feature-tag.is-laptop {
  color: var(--red);
}
.feature-title {
  font-weight: 700;
  font-size: 1rem;
  color: #171920;
  line-height: 1.3;
  transition: color 0.2s;
}

/* ===== Top 5 card ===== */
.top5-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 22, 30, 0.07);
  overflow: hidden;
}
.top5-head {
  padding: 1.4rem 1.4rem 0.9rem;
}
.top5-head h2 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

/* category tabs — dark bar + red active state */
.nav-cat {
  background: var(--black);
  border-radius: 12px;
  padding: 0.3rem;
  margin: 0 1rem 0.8rem;
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scrollbar-width: none;
  list-style: none;
}
.nav-cat::-webkit-scrollbar {
  display: none;
}
.nav-cat .nav-link {
  flex: 1 0 auto;
  min-width: max-content;
  text-align: center;
  color: #9aa0ad;
  font-weight: 700;
  font-size: 0.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: 9px;
  padding: 0.55rem 0.65rem;
  background: transparent;
  transition: 0.2s ease;
  cursor: pointer;
}
.nav-cat .nav-link:hover {
  color: #fff;
  background: #262a33;
}
.nav-cat .nav-link.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 4px 14px rgba(230, 56, 60, 0.4);
}

/* sub icon nav (smartphone test categories) */
.subnav {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.2rem;
  padding: 0 1.4rem 1rem;
  border-bottom: 1px solid #edeef1;
  overflow-x: auto;
  list-style: none;
}
.subnav .nav-link {
  border: none;
  background: none;
  flex-direction: column;
  color: var(--white-muted);
  text-align: center;
  flex: 1;
  min-width: 54px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.2rem;
  cursor: pointer;
}
.subnav .icon-box {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #f1f2f5;
  color: #9aa0ad;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.3rem;
  transition: 0.2s;
}
.subnav .icon-box svg {
  width: 16px;
  height: 16px;
}
.subnav .nav-link:hover .icon-box {
  background: #fde2e2;
  color: var(--red);
}
.subnav .nav-link.active {
  color: var(--red);
}
.subnav .nav-link.active .icon-box {
  background: var(--red);
  color: #fff;
}

.list-head {
  display: flex;
  justify-content: space-between;
  padding: 0 1.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b0b4bd;
  margin-top: 0.7rem;
}
.rank-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.4rem;
  border-bottom: 1px solid #f2f3f5;
  color: inherit;
}
.rank-row:hover .rank-device {
  color: var(--red);
}
.rank-row:last-child {
  border-bottom: none;
}
.rank-row.podium-end {
  border-bottom: 1px solid #dadce0;
}
.rank-num {
  font-size: 0.72rem;
  color: #c2c5cc;
  font-weight: 700;
  width: 14px;
}
.rank-device {
  font-weight: 600;
  font-size: 11px;
  flex: 1;
  color: #171920;
}
.rank-score {
  font-weight: 800;
  font-size: 11px;
  color: #171920;
}

.top5-foot {
  display: flex;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-top: 1px solid #edeef1;
}
.top5-foot a {
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.link-custom {
  color: var(--red);
}
.link-full {
  color: #171920;
}
.top5-foot a:hover {
  color: var(--red);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 991.98px) {
  .top5-card {
    margin-top: 2rem;
  }
}
@media (max-width: 575.98px) {
  .nav-cat .nav-link {
    font-size: 0.46rem;
    padding: 0.3rem 0.3rem;
  }
  .subnav .nav-link {
    font-size: 0.5rem;
    min-width: 40px;
  }
  .top5-head,
  .top5-foot {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .nav-cat {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .subnav,
  .list-head,
  .rank-row,
  .overall-label {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* end */

/* <!-- how can help section --> */
.repair-section {
  padding: 3rem 1rem;
  background: #fff;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.4rem;
  color: #111;
}

.title-underline {
  display: block;
  width: 36px;
  height: 3px;
  background: #e63232;
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.repair-service-card {
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  cursor: pointer;
  background: #fff;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.repair-service-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.repair-service-card .card-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}

.repair-service-card h6 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #111;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
  width: 100%;
}

.repair-service-card p {
  font-size: 0.78rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.4;
  width: 100%;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  margin-top: auto;
}

.arrow-link:hover {
  background: var(--red);
  color: #fff;
}
/* end */

/* video section css */
/* Video Card Wrapper */
.video-card {
  cursor: pointer;
  background: transparent;
  transition: transform 0.25s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f1f5f9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .thumbnail-wrapper img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-card:hover .play-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.play-btn-circle {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .play-btn-circle {
  background: #ffffff;
  color: #000000;
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.video-desc {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  color: #334155;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0 2px;
}

.luxury-dark-modal {
  background: rgba(15, 16, 22, 0.9) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper-glow {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 576px) {
  .video-desc {
    font-size: 0.8rem;
  }
  .play-btn-circle {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}
/* end */

/* our store section css */
.custom-store-card {
  border: 1px solid #eaeaea !important;
  border-radius: 12px !important;
  background: #ffffff;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.store-img {
  object-fit: cover;
  height: 100%;
  min-height: 140px;
  border-radius: 10px !important;
}

.btn-directions {
  border: 1px solid #e8384f;
  color: #e8384f;
  background: transparent;
  font-weight: 500;
  font-size: 13px;
  padding: 6px 16px;
  transition: all 0.2s;
  width: fit-content;
  display: inline-block;
}

.btn-directions:hover {
  background: var(--red) !important;
  color: #ffff;
  border-color: #e8384f;
}

@media (max-width: 575.98px) {
  .store-img {
    height: 180px;
    width: 100%;
  }

  .card-body-content {
    padding-top: 10px !important;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .store-img {
    min-height: 160px;
  }
}
/* end */

/* blog section css  */
.featured-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8eaed;
  background: #ffffff;
  align-items: stretch;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.featured-content-bg {
  background: linear-gradient(135deg, #0d1b3e 0%, #162352 100%);
  min-height: 220px;
}

.featured-img-col {
  position: relative;
  min-height: 220px;
  background: #f0f2f5;
  overflow: hidden;
}

.featured-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 768px) {
  .featured-img-col,
  .featured-content-bg {
    min-height: 260px;
  }
}

.badge-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ── Bottom Small Cards CSS ── */
.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  border: 1px solid #e8eaed;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-card-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f2f5;
}
.news-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #f0f2f5;
  transition: transform 0.3s ease;
}
.news-card:hover .news-card-img-wrap img {
  transform: scale(1.04);
}

.badge-tag-dark {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  background: #f0f2f5;
  color: #555;
  border: 1px solid #dde0e4;
}
/* end */

/* <!-- ── TESTIMONIALS SECTION ── --> */
.tm-section {
  background: #efc6c65e;
  padding: 70px 0;
}

.tm-swiper-container {
  overflow: hidden;
  padding: 10px 5px 50px;
}

.tm-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  
}

.tm-stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 10px;
}

.tm-quote-icon {
  font-size: 28px;
  color: var(--black);
  line-height: 1;
}

.tm-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tm-profile {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.tm-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid #ced4da;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.nav-btn:hover {
  background: var(--white);
  color: var(--black);
}

.swiper-pagination-bullet {
  background: var(--black) !important;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
}

.tm-swiper-container .swiper-slide {
  height: auto;
}
/* end */
/* -------------------------Home page css END------------------------------------ */

/*-------------------------Book repairs page  css start--------------------------  */

/* ── Hero Section Main Styles ── */
.page-hero {
  background: #090d14
    linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
  min-height: 150px;
  display: flex;
  align-items: center;
  padding: 1rem 0;
  position: relative;
  font-family: var(--font-display, "Jost", sans-serif);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Breadcrumbs styling */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  font-size: 0.9rem;
}

.hero-breadcrumb li,
.hero-breadcrumb a {
  color: var(--text-muted, #9aa3b2);
  text-decoration: none;
}

.hero-breadcrumb a:hover {
  color: var(--red);
}

.hero-breadcrumb li.active {
  color: var(--white, #fff);
  font-weight: 500;
}

/* Chevron Icon */
.hero-breadcrumb .bi-chevron-right {
  font-size: 9px;
  color: var(--text-muted, #9aa3b2);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Typography */
.page-hero__title {
  font-size: 25px;
  font-weight: 700;
  color: var(--white, #fff);
  /* margin-bottom: 0.8rem; */
  /* line-height: 1.2; */
}

.page-hero__title span {
  color: var(--red);

}

.page-hero__desc {
  color: var(--text-muted, #9aa3b2);
  font-size: 14px;
  /* margin-bottom: 2rem; */
}
.repair-search-live{
    position:relative;
    width:100%;
    max-width:420px;
}

.repair-search-form{
    display:flex;
    align-items:center;
    width:100%;
    border:1px solid #d9d9d9;
    border-radius:50px;
    overflow:hidden;
    background:#fff;
}

.repair-search-wrapper{
    position:relative;
    flex:1;
    width:100%;
}

.repair-search-live .search-suggest {
    left: 0;
    right: 0;
    width: 100%;
    min-width: 100%;
}

.repair-search-input{
    width:100%;
    height:40px;
    border:none;
    outline:none;
    box-shadow:none !important;
    background:transparent !important;
    border-radius:0 !important;
    padding-left:45px;
    padding-right:15px;
    font-size:14px;
    font-family:var(--font-display);
    -webkit-appearance:none;
    appearance:none;
}

.repair-search-input::-webkit-search-decoration,
.repair-search-input::-webkit-search-cancel-button,
.repair-search-input::-webkit-search-results-button,
.repair-search-input::-webkit-search-results-decoration{
    -webkit-appearance:none;
    appearance:none;
    display:none;
}

.repair-search-input:focus{
    border:none;
    outline:none;
    box-shadow:none !important;
    background:transparent !important;
}

.repair-search-icon{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#6c757d;
    font-size:18px;
    z-index:1;
    pointer-events:none;
}

@media (max-width:767.98px){
    .repair-search-live{
        max-width:100%;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .page-hero {
    min-height: auto;
    padding: 50px 0;
    text-align: center;
  }

  .page-hero__inner {
    max-width: 100%;
  }

  .hero-breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }

  .page-hero__title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .page-hero__desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
    padding: 0 10px;
  }
}
/* hero end */

/*  nav progress bar section css */
 /* --- Base Styles --- */
.fp-journey-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.fp-journey-step { 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    display: flex;
    align-items: center;
}

.fp-journey-num { 
    width: 32px; 
    height: 32px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 700; 
    font-size: 12px; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative; 
    flex-shrink: 0;
}

/* --- Active Step Styling (Teal Green) --- */
.active-step-num { 
    background: var(--red) !important; 
    color: #ffffff !important; 
    border: 2px solid #ffffff; 
    position: relative;
    box-shadow: 0 4px 10px rgba(247, 98, 98, 0.3);
}

/* Screenshot wala soft outer glow/halo ring effect */
.active-step-num::after { 
    content: ''; 
    position: absolute; 
    width: 140%; 
    height: 140%; 
    border-radius: 50%; 
    background-color: rgba(233, 55, 55, 0.2); 
    left: -20%; 
    top: -20%; 
    z-index: 1;
}

.active-step-text { 
    color: #000000 !important; 
    font-weight: 700 !important; 
    font-size: 14px; 
    margin-left: 8px;
}

/* --- Upcoming Step Styling --- */
.upcoming-step-num { 
    background-color: #f8f9fa; 
    color: #8892b0; 
    border: 2px solid #e2e8f0; 
}

/* --- Completed Step Styling (Green Checkmark) --- */
.completed-step-num { 
    background: var(--red) !important; 
    color: #ffffff !important; 
    border: 2px solid #ffffff; 
    font-size: 0 !important;
}

.completed-step-num::before {
    content: "✓";
    font-size: 12px;
    font-weight: bold;
    color: white;
}

/* --- Separator Line (Desktop) --- */
.fp-journey-sep { 
    transition: border-color 0.4s ease; 
    height: 2px !important; 
    background-color: #eef2f5 !important;
    flex-grow: 1;
    margin: 0 12px;
}

.fp-journey-label { 
    font-size: 12px; 
    margin-left: 8px;
}

/* --- Device Card Styling --- */
.device-card { 
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; 
    cursor: pointer; 
}

.device-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important; 
    border-color: var(--red) !important; 
}

/* --- Mobile View Media Query (Exact Screenshot Spec - 100% Fitted) --- */
@media (max-width: 767.98px) { 
    .fp-journey-bar { 
        padding: 4px 0px !important; 
        border: none !important; 
        background: transparent !important;
        box-shadow: none !important;
    } 
    
    .fp-journey-steps { 
        justify-content: flex-start !important; 
        overflow: hidden !important; 
        flex-wrap: nowrap !important;
    } 
    
    .fp-journey-label { 
        display: none !important; 
    } 
    
    .fp-journey-step:has(.active-step-num) .fp-journey-label { 
        display: inline-block !important; 
        font-size: 10px; 
        white-space: nowrap; 
        color: #000000 !important; 
        font-weight: 700; 
        margin-left: 4px !important; 
    } 
    
    /* Mobile sizes for circles */
    .fp-journey-num { 
        width: 24px; 
        height: 24px; 
        font-size: 11px; 
        margin: 4px;
    } 
    
    /* Separator line layout compression to avoid scroll */
    .fp-journey-sep { 
        flex-grow: 0 !important;
        width: 15px !important; 
        margin: 0 6px !important; 
        height: 2px !important;
    } 
}
/* end */

/* varanty section css */
 .why-choose-us-area {
    background-color: #f8f9fa;  
}
.mobilink-bg {
    background-color: #efc6c65e !important;  
}
.Choose-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: var(--red); 
}
.icon-wrapper svg {
    width: 50px;
    height: 50px;
    color: var(--black);  
    transition: transform 0.3s ease;
}
.feature-item:hover .icon-wrapper svg {
    transform: scale(1.1);  
}
.feature-title{
    font-size: 1.25rem;  
    line-height: 1.4;
    color: var(--black);
}

@media (max-width: 767.98px){
    .feature-title{
        font-size: 1.2rem;
        line-height: 1.3;
    }
}
/* end */

/* how it work section */
 /* ── White Theme for How It Works ── */
  .mobilink-hiw-section {
    background-color: var(--white, #ffffff); 
    padding: 5rem 1rem;
    font-family: var(--font-display, "Jost", sans-serif);
    color: var(--bg, #11151c); 
  }

  .mobilink-hiw-badge {
    background: rgba(173, 23, 28, 0.08); 
    color: var(--red, #ad171c);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  /* Step Cards Base & Hover Animation */
  .mobilink-hiw-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;  
    border-radius: var(--radius-lg, 20px);
    padding: 2.5rem 1.8rem;
    height: 100%;
    position: relative;
    transition: var(--transition, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94));
    overflow: hidden;
  }
 
  .mobilink-hiw-card:hover {
    transform: translateY(-8px);
    border-color: var(--red, #ad171c);
    box-shadow: 0 12px 30px rgba(173, 23, 28, 0.1);  
  }

  /* Step Counter Badge */
  .mobilink-hiw-num {
    width: 46px;
    height: 46px;
    background: var(--red, #ad171c);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(173, 23, 28, 0.2);
    transition: var(--transition);
  }

  .mobilink-hiw-card:hover .mobilink-hiw-num {
    background: var(--bg, #11151c);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(17, 21, 28, 0.3);
  }
 
  @media (max-width: 767.98px) {
    .mobilink-hiw-col {
      position: relative;
      padding-bottom: 2.5rem;
    }
    .mobilink-hiw-col::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 2px;
      height: 2.5rem;
      background: linear-gradient(to bottom, #e2e8f0, transparent);
    }
    .mobilink-hiw-col:last-child::after {
      display: none;
    }
  }
/* end */

/* popular repairs section css */
 .subheading-line::after {
      content: '';
      display: block;
      width: 40px;
      height: 3px;
      background-color: var(--red); 
      margin-top: 8px;
      border-radius: 2px;
    }

    /* Card Styling */
    .brand-card-link {
      text-decoration: none;
      display: block;
      height: 100%;
    }

    .brand-card {
      height: 170px;
      background-color: #eaeaea;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .brand-card-square {
      height: auto;
      aspect-ratio: 1 / 1;
      width: 100%;
      background: linear-gradient(145deg, #f3f4f6 0%, #e5e7eb 100%);
    }

    .brand-card-square .brand-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .brand-card-title {
      font-size: clamp(0.95rem, 2.2vw, 1.15rem);
      line-height: 1.25;
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    }

    /* Image zoom effect on hover */
    .brand-img {
      transition: transform 0.5s ease;
    }

    .brand-card:hover .brand-img {
      transform: scale(1.08);
    }

    /* Modern Dark Gradient Overlay */
    .brand-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.06) 100%);
      transition: background 0.3s ease;
      z-index: 1;
    }

    .brand-card:hover .brand-overlay {
      background: linear-gradient(to top, rgba(173, 23, 28, 0.88) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.1) 100%);
    }

    /* Hover Shadow Dynamic Effect */
    .brand-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 28px rgba(17, 21, 28, 0.14) !important;
    }

    @media (max-width: 575.98px) {
      .brand-card-square .brand-overlay {
        padding: 0.85rem !important;
      }
    }
/* end */

/* popular devices section css */
    .brand-tabs-wrapper {
      background-color: #f1f3f5;
      border: 1px solid #dee2e6;
      padding: 6px;
      border-radius: 14px;
      gap: 4px;
    }

    .brand-tab-btn {
      border: none;
      background: transparent;
      padding: 10px 24px;
      font-weight: 600;
      font-size: 14px;
      color: #495057;
      border-radius: 10px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .brand-tab-btn:hover {
      color: var(--red);
    }

    .brand-tab-btn.tab-active {
      background-color: #ffffff;
      color: var(--red);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    }

    /* Device Panel Dynamic System */
    .brand-display-panel {
      display: none;
    }

    .brand-display-panel.panel-active {
      display: block;
      animation: fadeInPanel 0.4s ease;
    }

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

    /* Card Modern System Layout */
    .device-card-link {
      text-decoration: none;
      display: block;
    }

    .device-grid-card {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border-color: #e2e8f0 !important;
    }

    .device-img-container img {
      transition: transform 0.4s ease;
    }

    /* Card Hover Dynamics */
    .device-grid-card:hover {
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
      border-color: var(--red) !important;
    }

    .device-grid-card:hover .device-img-container img {
      transform: scale(1.06);
    }
 
    .view-all-models-btn {
      transition: all 0.3s ease;
      font-size: 14px;
    }

    .view-all-models-btn:hover {
      background-color: var(--red) !important;
      border-color: var(--red) !important;
      color: #fff !important;
      transform: translateY(-2px);
    }
    /* Mobile Equal Height Cards */
@media (max-width: 767.98px) {

    .device-grid-card{
        min-height: 220px;
        height: 100%;
    }

    .device-img-container{
        height: 120px;
        min-height: 120px;
    }

    .device-img-container img{
        max-height: 100px;
        width: auto;
        object-fit: contain;
    }

    .device-grid-card h4{
        min-height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .device-grid-card p{
        min-height: 34px;
    }
}
/* end */

/* faqs section css */
 .faq-accordion .accordion-item {
      border: 1px solid #e2e8f0 !important;
      border-radius: 16px !important;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-accordion .accordion-item:not(:last-child) {
      margin-bottom: 16px;
    }

    .faq-accordion .accordion-item:hover {
      border-color: rgba(255, 0, 0, 0.15) !important;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    }

    .faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
      border-color: var(--red) !important;
      box-shadow: 0 10px 25px rgba(220, 53, 69, 0.06);
    }

    .faq-accordion .accordion-button {
      padding: 20px 24px;
      font-weight: 600;
      color: #2d3748;
      background-color: #ffffff;
      font-size: 16px;
      box-shadow: none !important;
      transition: all 0.3s ease;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
      color: var(--black);
      background-color: #efc6c65e;
    }
    .faq-accordion .accordion-button::after {
      background-image: none;
      content: "\b1a1";
      font-family: "bootstrap-icons";
      font-size: 14px;
      color: #141414;
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .faq-accordion .accordion-button:not(.collapsed)::after {
      content: "\b214"; 
      color: var(--red);
      transform: rotate(180deg);
    }

    .faq-accordion .accordion-body {
      padding: 0 24px 24px 24px;
      color: #4a5568;
      line-height: 1.7;
      font-size: 15px;
      background-color: #ffffff;
    }

    .support-cta-box {
      border: 1px solid #e2e8f0;
      background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
      transition: transform 0.3s ease;
    }
    
    .support-cta-box:hover {
      transform: translateY(-3px);
    }
/* end */
/*-------------------------Book repairs page  css End--------------------------  */

/* ------------brand page css ----------- */
    
 .brand-card-link {
      text-decoration: none;
      display: block;
    }

    .brand-main-card {
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 32px 20px;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .brand-icon-shape {
      width: 70px;
      height: 70px;
      background-color: #f8f9fa;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: #4a5568;
      margin-bottom: 20px;
      transition: all 0.35s ease;
    }

    /* Hover Effects Dynamic */
    .brand-main-card:hover {
      transform: translateY(-6px);
      border-color: var(--red);
      box-shadow: 0 15px 30px rgba(220, 53, 69, 0.08);
    }

    .brand-main-card:hover .brand-icon-shape {
      background-color: rgba(220, 53, 69, 0.08);
      color: var(--red);
      transform: scale(1.05);
    }

    /* Minimal Arrow Link Icon */
    .brand-action-arrow {
      font-size: 14px;
      color: #a0aec0;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .brand-main-card:hover .brand-action-arrow {
      color: var(--red);
      transform: translateX(4px);
    } 
/*------------ end ---------- */

/* --------- models ---------- */

/* model card css */
    /* --- Core Custom CSS for Overlap & Float Animation --- */
    .device-card-outer {
      /* margin-top: 45px;   */
      border-radius: var(--radius-lg) !important;
      transition: var(--transition) !important;
    }

    .img-container {
      width: 85%;
      max-width: 220px;
      height: 160px;
      margin-top: -36px;
      margin-bottom: 0.75rem !important;
      transition: var(--transition);
      overflow: hidden;
    }

    .device-img {
      max-width: 90%;
      max-height: 140px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.12));
      transition: var(--transition);
    }

    /* Other / Not in the list — phone outline icon sized like model photos */
    .device-img--other-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: auto;
      max-width: 100%;
      height: 140px;
      font-size: 5.5rem;
      line-height: 1;
      color: #94a3b8;
      filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.12));
      transition: var(--transition);
    }

    .device-card-outer:hover .device-img--other-icon {
      color: #64748b;
      transform: scale(1.07) translateY(-5px);
      filter: drop-shadow(0 20px 25px rgba(173, 23, 28, 0.25));
    }

    /* Hover State Animations */
    .device-card-outer:hover {
      transform: translateY(-3px);
      border-color: rgba(203, 60, 67, 0.3) !important; 
      box-shadow: 0 20px 40px rgba(173, 23, 28, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03) !important; 
      background-color: #ffffff !important;
    }

    .device-card-outer:hover .img-container {
      transform: translateY(-10px);  
      background-color: rgba(203, 60, 67, 0.05) !important;  
    }

    .device-card-outer:hover .device-img {
      transform: scale(1.07) translateY(-5px);  
      filter: drop-shadow(0 20px 25px rgba(173, 23, 28, 0.25));
    }

    /* Link text color changes on card hover */
    .device-card-outer:hover .device-link {
      color: var(--red) !important;
    }
    .device-card-outer:hover .arrow-icon {
      transform: translateX(6px);
    }

    /* Page entry load effect */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .device-card-outer { animation: fadeInUp 0.6s ease-out both; }
    .row > div:nth-child(1) .device-card-outer { animation-delay: 0.1s; }
    .row > div:nth-child(2) .device-card-outer { animation-delay: 0.2s; }
    .row > div:nth-child(3) .device-card-outer { animation-delay: 0.3s; }
    .row > div:nth-child(4) .device-card-outer { animation-delay: 0.4s; }
    .row > div:nth-child(5) .device-card-outer { animation-delay: 0.5s; }
    .row > div:nth-child(6) .device-card-outer { animation-delay: 0.6s; }

    /* Responsive adjustment for small mobiles */
    @media (max-width: 576px) {
      .device-card-outer { margin-top: 28px; }
      .img-container {
        margin-top: -28px;
        height: 140px;
        max-width: 180px;
      }
      .device-img { max-height: 120px; }
      .device-img--other-icon {
        height: 120px;
        font-size: 4.5rem;
      }
    }
/* end */
/* ----------- end --------- */

/* ---------------- repairing and pricing --------------- */

    /* ── SERVICE CARDS GRID (screenshot style) ── */
    .fp-svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .fp-svc-card {
      background: var(--white);
      border: 1.5px solid #e5e7eb;
      border-radius: var(--radius-lg);
      padding: 20px 14px 16px;
      cursor: pointer;
      transition: var(--transition);
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      overflow: hidden;
    }
    .fp-svc-card:hover {
      border-color: rgba(173,23,28,0.3);
      box-shadow: 0 4px 18px rgba(173,23,28,0.1);
      transform: translateY(-2px);
    }
    .fp-svc-card.selected {
      border-color: var(--red);
      background: #fff5f5;
      box-shadow: 0 4px 18px rgba(173,23,28,0.15);
    }

    /* info icon top-right */
    .fp-svc-info-btn {
      position: absolute; top: 10px; right: 10px;
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--red); color: #fff;
      font-size: 12px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; border: none; opacity: 0;
      transition: opacity 0.2s;
    }
    .fp-svc-card:hover .fp-svc-info-btn,
    .fp-svc-card.selected .fp-svc-info-btn { opacity: 1; }

    /* icon area */
    .fp-svc-card-icon {
      width: 90px; height: 90px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 12px;
    }
    .fp-svc-card-icon svg, .fp-svc-card-icon img {
      width: 100%; height: 100%; object-fit: contain;
    }

    /* warranty badge */
    .fp-svc-warranty {
      font-size: 11px; font-weight: 600; color: var(--red);
      display: flex; align-items: center; gap: 4px;
      margin-bottom: 4px; text-decoration: underline; text-underline-offset: 2px;
    }
    .fp-svc-card-name { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 4px; line-height: 1.3; }
    .fp-svc-card-price { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 14px; }

    /* plus / check button */
    .fp-svc-plus-btn {
      width: 42px; height: 42px; border-radius: 50%;
      border: 2px solid #cbd5e1;
      background: #fff;
      color: #64748b;
      font-size: 20px; font-weight: 300;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      margin-top: auto;
      line-height: 1;
    }
    .fp-svc-card.selected .fp-svc-plus-btn {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }

    /* ── Sidebar ── */
    .fp-book-sidebar {
      background: var(--white);
      border: 1.5px solid #e5e7eb;
      border-radius: var(--radius-lg);
      padding: 22px;
      position: sticky; top: 20px;
      box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    }
    .fp-book-sidebar-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #9ca3af; margin-bottom: 5px; }
    .fp-book-device-name { font-size: 19px; font-weight: 800; color: var(--black); margin-bottom: 16px; letter-spacing: -0.02em; }
    .fp-book-hint { font-size: 13px; color: var(--text-muted); }

    #selectedList { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
    .fp-selected-tag {
      display: flex; justify-content: space-between; align-items: center;
      background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; padding: 9px 13px;
    }
    .fp-selected-tag-name { font-size: 13px; font-weight: 500; color: var(--black); }
    .fp-selected-tag-price { font-size: 13px; font-weight: 700; color: var(--red); }

    .fp-book-total {
      display: flex; justify-content: space-between; align-items: center;
      background: #fff1f2; border: 1.5px solid rgba(173,23,28,0.2);
      border-radius: 10px; padding: 13px 16px; margin-bottom: 18px;
    }
    .fp-book-total-label { font-size: 13px; font-weight: 600; color: var(--black); }
    .fp-book-total-price { font-size: 22px; font-weight: 900; color: var(--red); letter-spacing: -0.03em; }

    .fp-sidebar-divider { height: 1px; background: #e5e7eb; margin: 16px 0; }

    .fp-booking-section-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9ca3af; margin-bottom: 10px; }
    .fp-type-cards { display: flex; gap: 9px; }
    .fp-type-card {
      flex: 1; display: flex; align-items: center; gap: 9px;
      background: #f9fafb; border: 1.5px solid #e5e7eb; border-radius: 10px;
      padding: 11px 12px; cursor: pointer; transition: var(--transition);
    }
    .fp-type-card:hover { border-color: rgba(173,23,28,0.25); }
    .fp-type-card.selected { border-color: var(--border-sel); background: #fff1f2; }
    .fp-type-card i { font-size: 20px; color: #9ca3af; }
    .fp-type-card.selected i { color: var(--red); }
    .fp-type-card-label { font-size: 13px; font-weight: 700; color: var(--black); }
    .fp-type-card-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

    .fp-walkin-section { margin-top: 14px; }
    .fp-wiz-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9ca3af; margin-bottom: 9px; display: flex; align-items: center; gap: 6px; }
    .fp-wiz-label i { color: var(--red); }

    .fp-loc-option {
      display: flex; align-items: center; gap: 11px;
      padding: 11px 13px; border: 1.5px solid #e5e7eb; border-radius: 10px;
      margin-bottom: 7px; cursor: pointer; transition: var(--transition); background: #f9fafb;
    }
    .fp-loc-option:hover { border-color: rgba(173,23,28,0.25); background: #fff8f8; }
    .fp-loc-option.selected { border-color: var(--border-sel); background: #fff1f2; }
    .fp-loc-radio { width: 16px; height: 16px; flex-shrink: 0; border-radius: 50%; border: 2px solid #9ca3af; transition: var(--transition); }
    .fp-loc-option.selected .fp-loc-radio { border-color: var(--red); background: var(--red); }
    .fp-loc-name { font-size: 13px; font-weight: 600; color: var(--black); }
    .fp-loc-addr { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    .fp-wiz-selected-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
    .fp-wiz-selected-info { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--black); }
    .fp-wiz-change { font-size: 12px; font-weight: 600; color: var(--red); background: none; border: none; cursor: pointer; text-decoration: underline; }

    .fp-time-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-top: 8px; }
    .fp-time-chip {
      background: #f9fafb; border: 1.5px solid #e5e7eb; border-radius: 8px;
      padding: 9px 6px; text-align: center; font-size: 12px; font-weight: 600;
      color: var(--black); cursor: pointer; transition: var(--transition);
    }
    .fp-time-chip:hover { border-color: rgba(173,23,28,0.3); background: #fff8f8; }
    .fp-time-chip.selected { border-color: var(--red); background: #fff1f2; color: var(--red); }

    .fp-calendar {
      margin-top: 8px;
      background: #fff;
      border: 1.5px solid #e5e7eb;
      border-radius: 12px;
      padding: 12px 10px 10px;
    }
    .fp-cal-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 10px;
    }
    .fp-cal-title {
      flex: 1;
      text-align: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--black);
      letter-spacing: -0.01em;
    }
    .fp-cal-nav-btn {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      border: 1.5px solid #e5e7eb;
      background: #f9fafb;
      color: var(--black);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      padding: 0;
      line-height: 1;
    }
    .fp-cal-nav-btn:hover:not(:disabled) {
      border-color: rgba(173,23,28,0.35);
      background: #fff1f2;
      color: var(--red);
    }
    .fp-cal-nav-btn:disabled {
      opacity: 0.35;
      cursor: not-allowed;
    }
    .fp-cal-weekdays,
    .fp-cal-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
    }
    .fp-cal-weekdays {
      margin-bottom: 4px;
    }
    .fp-cal-weekdays > div {
      text-align: center;
      font-size: 10px;
      font-weight: 600;
      color: #9ca3af;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 2px 0;
    }
    .fp-cal-day {
      aspect-ratio: 1;
      min-height: 32px;
      border: 1.5px solid transparent;
      border-radius: 8px;
      background: transparent;
      color: var(--black);
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .fp-cal-day:not(.is-empty):not(.is-disabled):hover {
      border-color: rgba(173,23,28,0.3);
      background: #fff8f8;
    }
    .fp-cal-day.selected {
      border-color: var(--red);
      background: #fff1f2;
      color: var(--red);
    }
    .fp-cal-day.is-empty {
      visibility: hidden;
      pointer-events: none;
    }
    .fp-cal-day.is-disabled {
      color: #cbd5e1;
      cursor: not-allowed;
    }

    .fp-book-cta {
      width: 100%;
      background: linear-gradient(135deg, var(--red) 0%, var(--red-lg) 100%);
      color: var(--white); border: none; border-radius: 12px;
      padding: 15px; font-size: 15px; font-weight: 800; letter-spacing: 0.02em;
      cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
      transition: var(--transition); margin-top: 18px;
      box-shadow: 0 4px 20px rgba(173,23,28,0.28); font-family: var(--font-display);
    }
    .fp-book-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(173,23,28,0.38); }
    .fp-book-no-payment { text-align: center; font-size: 12px; color: #9ca3af; margin-top: 9px; }

    .fp-slide { transition: max-height 0.4s ease, opacity 0.3s ease; overflow: hidden; }
    .fp-slide.hidden { max-height: 0 !important; opacity: 0; pointer-events: none; }
    .fp-slide.visible { opacity: 1; }

    
    /* ── Mobile bar ── */
    .fp-mobile-bar {
      display: none; position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--white); border-top: 1.5px solid #e5e7eb;
      padding: 12px 16px 16px; z-index: 100; box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    }
    .fp-mobile-bar-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
    .fp-mobile-bar-label { font-size: 12px; color: var(--text-muted); }
    .fp-mobile-bar-price { font-size: 22px; font-weight: 900; color: var(--red); letter-spacing: -0.03em; }
    .fp-mobile-bar-cta {
      width: 100%; background: linear-gradient(135deg, var(--red) 0%, var(--red-lg) 100%);
      color: var(--white); border: none; border-radius: 12px;
      padding: 9px; font-size: 15px; font-weight: 800; font-family: var(--font-display);
      display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer;
    }

    /* ── Responsive ── */
    @media (max-width: 991px) {
      .fp-svc-grid { grid-template-columns: repeat(2, 1fr); }
      .Booking-Sidebar { display: none; }
      .fp-mobile-bar { display: block; }
    }
    @media (max-width: 575px) {
      .fp-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .fp-journey-label { display: none !important; }
      .fp-journey-num { width: 26px; height: 26px; font-size: 11px; }
    }
    @media (max-width: 380px) {
      .fp-svc-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    }

    /* SVG icons for cards */
    .card-svg { width: 80px; height: 80px; }
/* end */
/* ---------------- end ------------- */

/* ===================== repairs confirmation =================== */
   .rc-card {
    display: grid;
    grid-template-columns: 140px 1fr auto auto;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
  }

  .rc-img-wrap {
    background: #f8fafc;
    border-radius: 14px;
    padding: 1.25rem;
    aspect-ratio: 1;
    max-width: 140px;
  }

  .rc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .rc-badge {
    background: #ecfdf5;
    color: #065f46;
    font-size: 12px;
  }

  .rc-store-icon-wrap {
    width: 44px;
    height: 44px;
    background: #f8fafc;
  }
.rc-divider{
    width: 1px;
    border-color: #e5e7eb !important;
}
.payment-note {
    background-color: rgba(173, 23, 28, 0.04);
    border-left: 3px solid var(--red);
    grid-column: 1 / -1;
}

.payment-note-icon {
    color: var(--red);
    font-size: 1.1rem;
}

.payment-note-text {
    color: #4a5568;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0;
}

  /* Responsive Adjustments using Media Queries synced with Bootstrap breakpoints */
  @media (max-width: 991.98px) {
    .rc-card {
      grid-template-columns: 120px 1fr;
    }
    .rc-store-block {
      grid-column: 1 / -1;
    }
  }
/* Mobile only */
@media (max-width: 767.98px) {
    .rc-store-block{
        border-top: 1px solid #e5e7eb;
        padding-top: 20px;
        margin-top: 20px;
    }
     .rc-card {
      grid-template-columns: 1fr;
    }
    .rc-img-wrap {
      max-width: 100%;
      margin: 0 auto;
    }
    .rc-card-details {
      text-align: center;
    }
    .rc-price-row {
      justify-content: center;
    }
}
/* ===================== End ======================== */

/* =============== checkout css ========== */
 .checkout-card {
    border: 0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .checkout-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid #f0d0d1;
    background: #fff8f8;
    color: #4a1c1e;
    box-shadow: 0 1px 8px rgba(173, 23, 28, 0.06);
  }

  .checkout-alert i {
    color: #ad171c;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-top: 1px;
    flex-shrink: 0;
  }

  .checkout-alert strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1514;
    margin-bottom: 0.15rem;
  }

  .checkout-alert p {
    font-size: 0.875rem;
    line-height: 1.45;
    color: #5c5654;
  }

  .checkout-alert--error {
    border-color: #f0d0d1;
    background: #fff8f8;
  }

  .checkout-next-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .checkout-next-step {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .checkout-next-step__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff5f5;
    border: 1px solid #f0d0d1;
    color: #ad171c;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .checkout-next-step strong {
    display: block;
    font-size: 0.95rem;
    color: #1a1514;
    margin-bottom: 0.15rem;
  }

  .section-title-badge {
    width: 30px;
    height: 30px;
    background-color: #ad171c;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }

  .custom-form-label {
    font-weight: 600;
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .custom-form-input {
    border: 1.5px solid #e2e8f0 !important;
    background-color: #f8fafc !important;
    border-radius: 10px !important;
    padding: 0.7rem 1rem !important;
    font-size: 0.92rem !important;
    font-family: 'Jost', sans-serif;
    transition: all 0.2s ease-in-out;
    color: #1e293b !important;
  }

  .custom-form-input::placeholder {
    color: #b0bac9;
  }

  .custom-form-input:focus {
    background-color: #ffffff !important;
    border-color: #ad171c !important;
    box-shadow: 0 0 0 3px rgba(173, 23, 28, 0.1) !important;
  }

  .selectable-card-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .selectable-method-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #ffffff;
    height: 100%;
  }

  .selectable-method-card:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
  }

  .selectable-card-input:checked+.selectable-method-card {
    border-color: #ad171c;
    background-color: rgba(173, 23, 28, 0.04);
  }

  .ui-radio-dot {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
  }

  .selectable-card-input:checked+.selectable-method-card .ui-radio-dot {
    border-color: #ad171c;
    background-color: #ad171c;
  }

  .selectable-card-input:checked+.selectable-method-card .ui-radio-dot::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .sticky-summary-sidebar {
    position: sticky;
    top: 1.5rem;
    border: 0;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 1.75rem;
  }

  .place_order_btn {
    background: #ad171c !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
  }

  .place_order_btn:hover {
    background: #cb3c43 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(173, 23, 28, 0.25) !important;
  }

  .place_order_btn:active {
    transform: translateY(0);
  }

  .sub-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
  }

  #grandtotal {
    color: #ad171c !important;
  }

  .form-check-input:checked {
    background-color: #ad171c;
    border-color: #ad171c;
  }

  .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(173, 23, 28, 0.15);
  }

  /* ── Divider ── */
  hr {
    border-color: #f1f5f9;
  }


  .repair-title {
    font-size: 1rem;
  }

  .repair-desc {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .installment-logo {
    width: 60px;
    height: auto;
  }

  @media (max-width: 767.98px) {
    .checkout-card {
      padding: 1.25rem;
    }

    .sticky-summary-sidebar {
      position: static;
      margin-top: 0;
    }
  }
/* =========== End ============ */

/* ========= Thank You ============ */
 .thank-you-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    max-width: 540px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  }

  .icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background-color: var(--red);
    border-radius: 16px;
    transition: transform 0.3s ease;
  }

  .icon-wrap:hover {
    transform: scale(1.05);
  }

  .heading {
    color: var(--bg-dark);
    font-weight: 600;
    line-height: 1.4;
  }

  .body-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto;
  }

  .btn-home {
    background-color: var(--black);
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .btn-home:hover {
    background-color: var(--red);
    color: #ffffff;
  }
/* ========== End ============ */

/* ====== location css=========== */

.location-section img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

.location-content{
    padding: 20px 40px;
}

.location-content h2{
    font-size: 2rem;
}

.location-content p{
    font-size: 1rem;
    line-height: 1.8;
}

.location-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* Tablet */

@media (max-width:991.98px){

    .location-section{
        padding:60px 0;
    }

    .location-section img{
        height:320px;
        margin-bottom:25px;
    }

    .location-content{
        padding:0;
    }

    .location-content h2{
        font-size:30px;
    }

}

/* Mobile */

@media (max-width:767.98px){

    .location-section{
        padding:45px 0;
    }

    .location-section .row{
        margin-bottom:60px !important;
    }

    .location-section img{
        height:240px;
        border-radius:16px;
    }

    .location-content{
        text-align:center;
    }

    .location-content h2{
        font-size:26px;
        margin-top:20px;
    }

    .location-content p{
        font-size:15px;
    }

    .location-content ul{
        text-align:left;
        display:inline-block;
        margin-top:20px;
    }

    .location-buttons{
        justify-content:center;
    }

    .location-buttons .btn{
        width:100%;
        margin:0;
    }

}
/* ========= End ============ */

/* ========== About us ============= */
 /* Section Badge */
  .section-badge {
    color: var(--red);
    background: rgba(173, 23, 28, 0.06);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 20px;
  }

  /* Image Wrapper Design */
  .about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  }

  .about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .about-img-wrapper:hover img {
    transform: scale(1.03);
  }

  /* Premium Light Cards */
  .about-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    ;
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
  }

  .about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(173, 23, 28, 0.2);
    box-shadow: 0 15px 35px rgba(173, 23, 28, 0.06);
  }

  .about-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(173, 23, 28, 0.05);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 25px;
    transition: var(--transition);
  }

  .about-card:hover .icon-wrapper {
    background: var(--red);
    color: var(--white);
  }

  /* Mission Box Light Version */
  .mission-box {
    background: #f8f9fa;
    border-left: 4px solid var(--red);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  }
.mission-icon {
    width: 45px;
    height: 45px;
    background: rgba(173, 23, 28, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.mission-title {
    font-size: 1.5rem; /* Same as fs-4 */
    font-weight: 700;
    margin-bottom: 0;
}
  /* Premium CTA Section */
  .about-cta-section {
    background: var(--red);
    border: 1px solid rgba(173, 23, 28, 0.1);
    border-radius: var(--radius-lg);
    padding: 60px 30px;
  }

  /* Black Button */
  .btn-about-primary {
    background: var(--black);
    color: var(--white);
    padding: 14px 35px;
    border-radius: var(--radius);
    font-weight: 600;
    border: 1px solid var(--black);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
  }

  .btn-about-primary:hover {
    background: #222;
    border-color: #222;
    color: var(--white);
  }

  /* White Button */
  .btn-about-outline {
    background: var(--white);
    color: var(--black);
    padding: 14px 35px;
    border-radius: var(--radius);
    font-weight: 600;
    border: 1px solid var(--white);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
  }

  .btn-about-outline:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }
/* ========== End =============== */

/* ======= contact us ============= */
/* Background glow */
  .bg-glow {
    position: fixed;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(173, 23, 28, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* Layout */
  .page-wrap {
    position: relative;
    z-index: 1;
    padding: 80px 0;
  }

  /* Header */
  .eyebrow {
    color: var(--red-lg);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
  }

  .headline {
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
  }

  .headline span {
    color: var(--red-lg);
  }

  .sub-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 480px;
  }

  /* Card */
  .card-panel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  }

  /* Form */
  .form-panel {
    padding: 40px;
  }

  .form-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .form-control,
  .form-select {
    background: #f7f7f9;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    padding: 12px 16px;
    transition: var(--transition);
  }

  .form-control:focus,
  .form-select:focus {
    border-color: var(--red-lg);
    box-shadow: 0 0 0 3px rgba(173, 23, 28, 0.15);
    background: #fff;
  }

  /* Button */
  .btn-send {
    background: linear-gradient(135deg, var(--red), var(--red-lg));
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 14px 32px;
    font-weight: 600;
    transition: var(--transition);
  }

  .btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(173, 23, 28, 0.4);
  }

  /* Info */
  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }

  .info-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    background: rgba(173, 23, 28, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-lg);
  }

  .info-title {
    font-weight: 600;
    font-size: 0.95rem;
  }

  .info-text {
    color: var(--text-muted);
    font-size: 0.9rem;
  }

  /* Capsule bar */
  .capsule-action-bar {
    background: #000;
    color: #fff;
    border-radius: 100px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
  }

  .capsule-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
  }

  .highlighted-btn {
    background: var(--red);
    border-radius: 50px;
  }

  /* Social */
  .social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    margin-right: 10px;
    transition: var(--transition);
  }

  .social-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
  }

  .floating-form-card .form-control,
  .floating-form-card .form-select {
    border: none;
    background: #f1f3f5;
    padding: 15px;
    border-radius: 10px;
  }

  .floating-form-card .form-control:focus,
  .floating-form-card .form-select:focus {
    background: #e9ecef;
    box-shadow: none;
  }

  /* ONLY RESPONSIVE FIX */
  @media (max-width: 991px) {
    .form-panel {
      padding: 28px;
    }
  }

  @media (max-width: 767px) {
    .page-wrap {
      padding: 50px 0;
    }

    .capsule-action-bar {
      flex-direction: column;
      border-radius: 20px;
      align-items: center;
    }

    .capsule-link {
      justify-content: center;
      width: 100%;
    }
  }
/* ============ End ============= */

/* ======== login css ======== */
 /* Custom Input Focus Effect */
    .fp-form-control:focus {
      outline: none;
      border-color: var(--red) !important;
      background-color: #ffffff !important;
      box-shadow: 0 0 0 4px rgba(173, 23, 28, 0.1) !important;
    }
 
    .fp-password-wrapper {
      position: relative;
    }
    .fp-password-wrapper input {
      padding-right: 3rem !important;
    }
    .fp-password-toggle {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }
 
    .fp-btn-primary {
      background-color: var(--red);
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(173, 23, 28, 0.2);
      transition: 0.2s ease-in-out;
    }
    .fp-btn-primary:hover {
      background-color: var(--red-lg);
      color: #ffffff;
      transform: translateY(-1px);
    }
 
    .auth-sidebar-panel-right {
      background: linear-gradient(135deg, var(--red) 0%, var(--red-lg) 100%);
      position: relative;
      overflow: hidden;
    }
    .auth-sidebar-panel-right::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      top: -80px;
      right: -80px;
    }
    .auth-sidebar-panel-right::after {
      content: '';
      position: absolute;
      width: 120px;
      height: 120px;
      transform: rotate(45deg);
      background: rgba(255, 255, 255, 0.03);
      bottom: 10%;
      left: 10%;
    }
 
    .text-brand-red {
      color: var(--red) !important;
    }
    .text-brand-red:hover {
      color: var(--red-lg) !important;
    }
 
    .fp-auth-divider {
      display: flex;
      align-items: center;
      text-align: center;
    }
    .fp-auth-divider::before,
    .fp-auth-divider::after {
      content: '';
      flex: 1;
      border-bottom: 1px solid #e2e8f0;
    }
    .fp-auth-divider:not(:empty)::before { margin-right: 1em; }
    .fp-auth-divider:not(:empty)::after { margin-left: 1em; }

/* =====end =========== */

/* ====== forget password css ======= */
  .fp-form-control:focus {
    outline: none;
    border-color: var(--red) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(173, 23, 28, 0.1) !important;
  }

  .auth-sidebar-panel-left {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-lg) 100%);
    position: relative;
    overflow: hidden;
  }

  .auth-sidebar-panel-left::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -80px;
    left: -80px;
  }

  .auth-sidebar-panel-left::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.03);
    top: 10%;
    right: 10%;
  }
  .text-brand-red {
    color: var(--red) !important;
  }

  .text-brand-red:hover {
    color: var(--red-lg) !important;
  }

  .bg-brand-red-light {
    background-color: rgba(173, 23, 28, 0.08) !important;
  }
/* ========== end =========== */

/* ======= register =========== */

    .light-form-control:focus {
      outline: none;
      border-color: var(--red) !important;
      background-color: #ffffff !important;
      box-shadow: 0 0 0 4px rgba(173, 23, 28, 0.1) !important;
    }
 
    .light-password-wrapper {
      position: relative;
    }
    .light-password-wrapper input {
      padding-right: 3rem !important;
    }
    .light-password-toggle {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .light-btn-primary {
      background-color: var(--red);
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(173, 23, 28, 0.2);
      transition: 0.2s ease-in-out;
    }
    .light-btn-primary:hover {
      background-color: var(--red-lg);
      color: #ffffff;
      transform: translateY(-1px);
    }

    .auth-sidebar-panel {
      background: linear-gradient(135deg, var(--red) 0%, var(--red-lg) 100%);
      position: relative;
      overflow: hidden;
    }
    .auth-sidebar-panel::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      bottom: -80px;
      left: -80px;
    }
    .auth-sidebar-panel::after {
      content: '';
      position: absolute;
      width: 120px;
      height: 120px;
      transform: rotate(45deg);
      background: rgba(255, 255, 255, 0.03);
      top: 10%;
      right: 10%;
    }
    .text-brand-red {
      color: var(--red) !important;
    }
    .text-brand-red:hover {
      color: var(--red-lg) !important;
    }
    .light-auth-divider {
      display: flex;
      align-items: center;
      text-align: center;
    }
    .light-auth-divider::before,
    .light-auth-divider::after {
      content: '';
      flex: 1;
      border-bottom: 1px solid #e2e8f0;
    }
    .light-auth-divider:not(:empty)::before { margin-right: 1em; }
    .light-auth-divider:not(:empty)::after { margin-left: 1em; }
/* ========= end ============ */

/* ============ Dashboard css ===========  */

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 264px;
    background: var(--black);
    border-right: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 32px 22px;
    overflow-y: scroll;  
    z-index: 1040;
    transition: transform var(--transition); 
    -webkit-overflow-scrolling: touch;
  }
 
  .sidebar::-webkit-scrollbar {
    display: none;
  } 
  .sidebar {
    -ms-overflow-style: none;  
    scrollbar-width: none; 
  }

  /* Desktop Margin Adjustment */
  @media (min-width: 992px) {
    main {
      margin-left: 264px;
    }
    .mobile-header {
      display: none !important;
    }
  }

  /* Mobile/Tablet Adjustment for Offcanvas Sidebar */
  @media (max-width: 991.98px) {
    .sidebar {
      transform: translateX(-100%);
      box-shadow: 10px 0 30px rgba(0,0,0,0.25);
    }
    .sidebar.open {
      transform: translateX(0);
    }
    main {
      margin-left: 0 !important;
    }
  }

  /* Custom Hover Interactions & Layout Tweaks */
  .brand .mark {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 4px 14px rgba(0,0,0,0.4);
    flex-shrink: 0;
    transition: transform var(--transition);
  }
  .brand:hover .mark { transform: rotate(-6deg) scale(1.05); }
  
  .nav-item{
    display:flex;
    align-items:center;
    gap:13px;
    padding:12px 14px;
    color:rgba(255,255,255,.75);
    text-decoration:none;
    border-radius:12px;
    transition:.3s;
    margin-bottom: 10px;
} 

.nav-item span{
    color:inherit;
}
  .nav-item svg { width: 17px; height: 17px; opacity: 0.8; flex-shrink: 0; transition: transform var(--transition); }
  .nav-item:hover { color: var(--white); background:  rgba(252, 127, 127, 0.55); transform: translateX(3px); }
  .nav-item:hover svg { transform: scale(1.08); }
  
  .nav-item.active {
    color: var(--white);
    background: var(--red);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  }
  .nav-item.active::before {
    content: "";
    position: absolute; left: -22px; top: 8px; bottom: 8px; width: 3px;
    background: var(--white);
    border-radius: 0 4px 4px 0;
  }

  .sidebar-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin: 22px 12px 8px;
    padding: 13px;
    border-radius: var(--radius);
    border: 1px dashed rgba(255,255,255,0.5);
    color: var(--white) !important;
    font-size: 13.5px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
  }
  .sidebar-cta:hover { background: rgba(212, 210, 210, 0.25); border-style: solid; border-color: var(--white); transform: translateY(-2px); }

  .avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--red);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    color: var(--white);
  }

  /* Verification Banner Scan Animations */
  .alert-strip {
    border-left: 3px solid var(--red-lg) !important;
    position: relative;
    overflow: hidden;
  }
  .alert-strip::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(173,23,28,0.06), transparent);
    pointer-events: none;
    z-index: 0;
  }
  .alert-strip > * {
    position: relative;
    z-index: 1;
  }

  .alert-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--red-lg);
    box-shadow: 0 0 0 4px rgba(203,60,67,0.2);
    flex-shrink: 0;
    animation: pulse 1.8s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{ opacity: 1; } 50%{ opacity: 0.35; } }

  /* Custom Ticket Cards Styling */
  .ticket {
    position: relative;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(17,21,28,0.05);
    transition: all var(--transition);
  }
  .ticket:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px -12px rgba(173,23,28,0.28);
    border-color: rgba(173,23,28,0.35);
  }
  .ticket::before {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--red-lg), transparent);
  }
  .ticket-icon {
    width: 46px; height: 46px; border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
  }
  .ticket:hover .ticket-icon { background: var(--red); }
  .ticket:hover .ticket-icon svg { color: var(--white); }
  .ticket-icon svg { width: 20px; height: 20px; color: var(--red-lg); transition: var(--transition); }

  /* Empty State Ticket Icon Wrapper */
  .empty-ticket .stub {
    width: 74px; height: 92px;
    border: 1.5px dashed rgba(0,0,0,0.18);
    border-radius: 10px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .empty-ticket .stub::before,
  .empty-ticket .stub::after {
    content: "";
    position: absolute; width: 12px; height: 12px; border-radius: 50%;
    background: #fff;
    border: 1.5px dashed rgba(0,0,0,0.18);
    left: 50%; transform: translateX(-50%);
  }
  .empty-ticket .stub::before { top: -7px; }
  .empty-ticket .stub::after { bottom: -7px; }

  /* Panel Structure Custom Styles */
  .panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(17,21,28,0.05);
  }

  /* Custom Action Buttons Styling */
  .qa-btn {
    display: flex; flex-direction: column; gap: 12px;
    padding: 20px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
  }
  .qa-btn:hover { border-color: var(--red); background: var(--red); color: var(--white) !important; transform: translateY(-3px); box-shadow: 0 12px 22px -10px rgba(173,23,28,0.5); }
  .qa-btn svg { width: 18px; height: 18px; color: var(--red-lg); transition: var(--transition); }
  .qa-btn:hover svg { color: var(--white); }

  /* Premium ID Card styling */
  .id-card {
    background: linear-gradient(160deg, #f8fafc, #e8eaee);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    position: relative;
  }
  .id-card .strip {
    position: absolute; top: 0; right: 0; bottom: 0; width: 6px;
    background: repeating-linear-gradient(45deg, var(--red), var(--red) 4px, var(--red-lg) 4px, var(--red-lg) 8px);
    border-radius: 0 var(--radius) var(--radius) 0;
    opacity: 0.85;
  }
  .id-edit {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--red-lg);
    text-decoration: none;
    transition: var(--transition);
  }
  .id-edit:hover { color: var(--red); gap: 9px; }

  /* Custom Mobile Header Layout Styling */
  .mobile-header {
    background: var(--black);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  .mobile-header .brand-mob {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-weight: 700;
    font-size: 17px;
  }
  .mobile-header .header-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, #cb3c43, #ad171c);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px;
  }

  /* Backdrop Custom Styling */
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1035;
    backdrop-filter: blur(2px);
  }
  .sidebar-overlay.active {
    display: block;
  }
/* =========== End ================= */

/* ======= dashboard booking css ============= */
 
.dashboard-content {
  background: #f8f9fa;
  min-height: calc(100vh - 60px);
}

/* Red Accent Premium Primary Button */
.btn-booking-primary {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(203, 60, 67, 0.25);
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-booking-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(203, 60, 67, 0.35);
  opacity: 0.95;
}

/* PREMIUM STATS CARDS IMPROVEMENTS */
.stats-card {
  background: var(--white);
  padding: 20px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stats-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.stats-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stats-card.total { border-top: 3px solid #6c757d; }
.stats-card.total .stats-card-icon { background: rgba(108, 117, 125, 0.1); color: #6c757d; }

.stats-card.progress-box { border-top: 3px solid #ffc107; }
.stats-card.progress-box .stats-card-icon { background: rgba(255, 193, 7, 0.1); color: #b45309; }

.stats-card.ready { border-top: 3px solid #198754; }
.stats-card.ready .stats-card-icon { background: rgba(25, 135, 84, 0.1); color: #15803d; }

.stats-card.warranty { border-top: 3px solid #dc3545; }
.stats-card.warranty .stats-card-icon { background: rgba(220, 53, 69, 0.1); color: #dc3545; }

.stats-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #64748b;
  margin-bottom: 4px;
  font-weight: 700;
}
.stats-value {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

/* Custom Horizontal Filter System (CLICKABLE TAGS) */
.filter-scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-scroll-container::-webkit-scrollbar {
  display: none;
}
.filter-pills {
  display: flex;
  gap: 8px;
  white-space: nowrap;
}
.filter-btn {
  background: var(--white);
  border: 1px solid #e2e8f0;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}
.filter-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #1e293b;
}
.filter-btn.active {
  background: var(--red);
  color: var(--white) !important;
  border-color: var(--red);
  box-shadow: 0 4px 10px rgba(203, 60, 67, 0.2);
}

/* Modern Card Layouts for Bookings */
.repair-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.repair-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Status Indicator Borders */
.border-left-warning { border-left: 4px solid #ffc107; }
.border-left-success { border-left: 4px solid #198754; }

.repair-card-body {
  padding: 20px;
}
.repair-device {
  font-size: 16.5px;
  font-weight: 700;
  color: #1e293b;
}
.repair-id {
  font-size: 13px;
  color: #64748b;
}
.repair-price {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
}

/* Meta Data Grid inside Card */
.repair-meta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}
.meta-item {
  font-size: 13px;
  color: #475569;
}

/* Card Action Footers */
.repair-card-footer {
  background: #f8fafc;
  padding: 12px 20px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: flex-end;
}
.btn-repair-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: opacity 0.2s ease;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.btn-repair-action:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* Badges Overrides */
.badge {
  display: inline-block;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
}
.badge-warning { background: #fffbeb; color: #b45309; }
.badge-success { background: #f0fdf4; color: #15803d; }

/* DYNAMIC TAB EMPTY STATE STYLE */
.empty-tab-box {
  background: var(--white);
  border: 2px dashed #e2e8f0;
  border-radius: 16px;
  padding: 50px 30px;
  text-align: center;
  max-width: 550px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}
.empty-box-icon {
  background: #f8fafc;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  margin-bottom: 18px;
}
.empty-tab-box h5 {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}
.empty-tab-box p {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 22px;
}
.btn-empty-cta {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(203, 60, 67, 0.2);
  transition: all 0.2s ease;
}
.btn-empty-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(203, 60, 67, 0.3);
}
/* ========== end =============== */

/* ======== dashboard warrnaty css ============= */
/* warranty right side css */
  
  /* Page Header Title */
  .page-head {
    display:flex; justify-content:space-between; align-items:flex-end;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 18px;
  }
  .page-head h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -0.3px;
    word-break: break-word;
  }
  .page-head .sub {
    font-size: 14px;
    color: var(--muted2);
    margin-top: 4px;
  }

  /* Premium Red Styled Info Warranty Banner */
  .warranty-strip {
    display:flex; align-items:flex-start; gap:16px;
    background: linear-gradient(90deg, rgba(173,23,28,0.06), rgba(173,23,28,0.01));
    border: 1px solid rgba(173,23,28,0.25);
    border-left: 4px solid var(--red);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 28px;
  }
  .warranty-strip svg {
    width: 20px; height: 20px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .warranty-strip .txt {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink);
  }
  .warranty-strip .txt b {
    color: var(--red);
    font-weight: 600;
  }
  .warranty-strip .txt a {
    color: var(--black);
    font-weight: 600;
    text-decoration: underline;
    transition: color var(--transition);
  }
  .warranty-strip .txt a:hover {
    color: var(--red);
  }

  /* Main Panel Container */
  .panel {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(17,21,28,0.04);
  }

  /* Empty Central State */
  .empty-state {
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .empty-state .shield-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(173,23,28,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .empty-state .shield-icon svg {
    width: 36px;
    height: 36px;
    color: var(--red);
  }
  .empty-state p {
    color: var(--muted2);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
  }

  /* Nice Solid Red Premium Action Button */
  .btn-premium-red {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, var(--red-lg), var(--red));
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 22px -6px rgba(173,23,28,0.45);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
  }
  .btn-premium-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -6px rgba(173,23,28,0.6);
  }
  .btn-premium-red svg {
    width: 18px;
    height: 18px;
  }
/* ========== end ============= */

/* =========== profile css ============ */

  /* profile right side css */
 .page-head {
    margin-bottom: 28px;
  }
  .page-head h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -0.3px;
  }
  .page-head .sub {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
  }

  /* ---------- Profile Grid Layout ---------- */
  .grid-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    max-width: 920px;
    align-items: start;
  }

  .fp-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 2px 10px rgba(17,21,28,0.03);
  }

  /* Left Column Content */
  .profile-box {
    text-align: center;
  }
  .fp-profile-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(145deg, #cb3c43, #ad171c);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin: 0 auto 16px;
    box-shadow: 0 6px 14px rgba(173,23,28,0.25);
  }
  .profile-box .user-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
  }
  .profile-box .user-email {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
    word-break: break-all;
  }
  .change-pass-wrapper {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #e2e8f0;
  }
  .change-pass-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    transition: var(--transition);
  }
  .change-pass-link:hover {
    color: var(--red-lg);
    gap: 8px;
  }
  .change-pass-link svg { width: 14px; height: 14px; }

  /* Right Column Form Elements */
  .form-row-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group.last {
    margin-bottom: 24px;
  }
  
  .fp-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
  }
  .fp-form-label span {
    font-weight: 400;
    color: #64748b;
  }

  .fp-form-control {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--black);
    transition: border-color var(--transition), box-shadow var(--transition);
  }
  .fp-form-control:focus {
    outline: none;
    border-color: var(--red-lg);
    box-shadow: 0 0 0 3px rgba(203,60,67,0.1);
  }
  .fp-form-control:disabled {
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
  }

  .fp-form-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
  }
  .fp-form-hint svg { width: 13px; height: 13px; color: #64748b; flex-shrink: 0; }

  /* Premium Save Changes Button */
  .fp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(145deg, var(--red-lg), var(--red));
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 6px 18px -4px rgba(173,23,28,0.4);
    transition: var(--transition);
    cursor: pointer;
  }
  .fp-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -4px rgba(173,23,28,0.55);
  }
  .fp-btn-primary svg { width: 16px; height: 16px; }
  /* ==========================================
     2. ALL RESPONSIVE MEDIA QUERIES (Combined)
     ========================================== */

  /* Tablet & Mobile Layout Shifts (991px and below) */
  @media (max-width: 991.98px) {
  
    main {
      margin-left: 0;
      padding: 20px;
    } 
    .sidebar {
      transform: translateX(-100%);
      box-shadow: 10px 0 30px rgba(0,0,0,0.25);
    }
    .sidebar.open {
      transform: translateX(0);
    } 
    .grid-profile {
      grid-template-columns: 1fr;
    } 
    .page-head h1 {
      font-size: 25px;
    }
  }
 
  @media (max-width: 576px) { 
    .fp-card {
      padding: 20px;
    } 
    .form-row-flex {
      grid-template-columns: 1fr;
    } 
    .fp-btn-primary {
      width: 100%;
      justify-content: center;
    }
  }
/* ============= end =============== */

/* ============== confirm password ============== */

  /* change password right side css */
  /* Page Heading */
  .page-head {
    margin-bottom: 28px;
  }
  .page-head h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -0.3px;
    color: var(--black);
    margin: 0;
  }
  .page-head .sub {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
  } 
  .fp-card-wrapper {
    max-width: 620px;  
  }
  .fp-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 2px 10px rgba(17,21,28,0.03);
  }
 
  .form-group {
    margin-bottom: 20px;
    position: relative;
  }
  .form-group.last {
    margin-bottom: 28px;
  }
  .fp-form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
  }
 
  .password-input-container {
    position: relative;
    display: flex;
    align-items: center;
  }
  .fp-form-control {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 44px 12px 14px;  
    font-size: 14px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--black);
    transition: border-color var(--transition), box-shadow var(--transition);
  }
  .fp-form-control:focus {
    outline: none;
    border-color: var(--red-lg);
    box-shadow: 0 0 0 3px rgba(203,60,67,0.1);
  }
 
  .password-toggle-btn {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    padding: 0;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
  }
  .password-toggle-btn:hover {
    color: #64748b;
  }
  .password-toggle-btn svg {
    width: 18px;
    height: 18px;
  } 
  .fp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(145deg, var(--red-lg), var(--red));
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 6px 18px -4px rgba(173,23,28,0.4);
    transition: var(--transition);
    cursor: pointer;
  }
  .fp-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -4px rgba(173,23,28,0.55);
  }
  .fp-btn-primary svg {
    width: 16px;
    height: 16px;
  }
 
  .fp-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 13px;
    color: #64748b;
  }
  .fp-card-footer svg {
    width: 15px;
    height: 15px;
    color: #94a3b8;
    flex-shrink: 0;
  }
  .fp-reset-link {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
  }
  .fp-reset-link:hover {
    color: var(--red-lg);
    text-decoration: underline;
  }


  /* ==========================================
     2. ALL RESPONSIVE MEDIA QUERIES (Combined)
     ========================================== */

  @media (max-width: 768px) {
    main {
      padding: 20px;
    }
    .page-head h1 {
      font-size: 25px;
    }
    .fp-card {
      padding: 24px;  
    }
  }

  @media (max-width: 576px) {
    .fp-card {
      padding: 20px;
    } 
    .fp-btn-primary {
      width: 100%;
      justify-content: center;
    }
    .fp-card-footer {
      flex-direction: row;
      align-items: flex-start;
    }
    .fp-card-footer svg {
      margin-top: 2px;
    }
  }
/* ============ end ============= */

/* =========== Blog css ============= */
 
.blog-search-box{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:18px;
    padding:30px;
    margin-bottom:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.search-form{
    display:flex;
    align-items:center;
    position:relative;
}

.search-form .form-control{
    height:56px;
    border-radius:50px;
    padding-left:50px;
    padding-right:120px;
    border:1px solid #ddd;
    box-shadow:none;
    transition:.3s;
}

.search-form .form-control:focus{
    border-color:#AD171C;
    box-shadow:0 0 0 .2rem rgba(173,23,28,.12);
}

.blog-search-icon{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
    font-size:18px;
    z-index:2;
}

.search-form .btn{
    position:absolute;
    right:5px;
    top:5px;
    height:46px;
    padding:0 24px;
    border-radius:40px;
    background:#AD171C;
    border:none;
    font-weight:600;
}

.search-form .btn:hover{
    background:#8e1116;
}

@media(max-width:991px){

    .blog-search-box{
        padding:22px;
    }

    .search-form{
        margin-top:15px;
    }

}
  .repair-card { border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); border: 1px solid #eceef2; }
  .repair-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(17,21,28,0.12); border-color: rgba(203,60,67,0.35); }
  .repair-card img { aspect-ratio: 16/11; object-fit: cover; transition: transform var(--transition); }
  .repair-card:hover img { transform: scale(1.06); }

  .badge-brand { background: var(--red); color: var(--white); font-family: var(--font-mono); font-weight: 500; letter-spacing: .03em; }
  .link-brand { color: var(--red-lg); font-weight: 500; }
  .link-brand svg { transition: transform var(--transition); }
  .repair-card:hover .link-brand svg { transform: translateX(4px); }
 /* Pagination */
.custom-pagination{
    gap:10px;
}

.custom-pagination .page-item .page-link{
    width:48px;
    height:48px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#333;
    font-weight:600;
    transition:.3s ease;
    box-shadow:none;
}

.custom-pagination .page-item .page-link:hover{
    background:#AD171C;
    color:#fff;
    border-color:#AD171C;
    transform:translateY(-2px);
}

.custom-pagination .page-item.active .page-link{
    background:#AD171C;
    border-color:#AD171C;
    color:#fff;
    box-shadow:0 8px 20px rgba(173,23,28,.25);
}

.custom-pagination .page-item.disabled .page-link{
    color:#aaa;
    background:#f8f9fa;
}
/* ============ end ============ */

/* ======== Blog Details css =============== */
.lede {
    border-left: 3px solid var(--red-lg);
    padding-left: 18px;
  }

  article h2 { font-weight: 700; letter-spacing: -0.01em; margin-top: 2.4rem; margin-bottom: 0.9rem; }
  article h2 .step-num {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--red-lg);
    display: block;
    letter-spacing: .1em;
    margin-bottom: 4px;
  }
  article p, article li { color: #3a4150; line-height: 1.75; }
  article .lead-text { color: #3a4150; }

  .tool-list { list-style: none; padding: 0; margin: 0; }
  .tool-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
  }
  .tool-list li:last-child { border-bottom: none; }
  .tool-list svg { flex-shrink: 0; margin-top: 3px; color: var(--red-lg); }

  .warning-box {
    background: #fdf1f1;
    border: 1px solid rgba(173,23,28,0.18);
    border-radius: var(--radius);
    padding: 18px 20px;
  }
  .warning-box strong { color: var(--red); }

  .toc a { color: #3a4150; }
  .toc a:hover { color: var(--red-lg); }
  .toc { border: 1px solid #eceef2; border-radius: var(--radius); }

  .avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(145deg, var(--red-lg), var(--red));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 600;
  }

  .repair-card { border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); border: 1px solid #eceef2; }
  .repair-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(17,21,28,0.12); border-color: rgba(203,60,67,0.35); }
  .repair-card img { aspect-ratio: 16/11; object-fit: cover; transition: transform var(--transition); }
  .repair-card:hover img { transform: scale(1.06); }
  .badge-brand { background: var(--red); color: var(--white); font-family: var(--font-mono); font-weight: 500; letter-spacing: .03em; }
  .link-brand { color: var(--red-lg); font-weight: 500; }
  .link-brand svg { transition: transform var(--transition); }
  .repair-card:hover .link-brand svg { transform: translateX(4px); }
   .hero-figure { border-radius: var(--radius-lg); overflow: hidden; }
  .hero-figure img { aspect-ratio: 16/8; object-fit: cover; width: 100%; }
  .custom-sticky {
    position: sticky;
    top: 90px;
}
/* =========== end ================ */

/* ============ faqs ============ */
 .accordion-paragraph{ color:var(--text-muted) !important; }

  .accordion-item{
    background:var(--white);
    border:1px solid rgba(0,0,0,.08) !important;
  }
  .accordion-item, .accordion-item .accordion-collapse{
    border-radius:var(--radius) !important;
  }
  .accordion-button{
    background:transparent;
    color:var(--black);
    transition:var(--transition);
  }
  .accordion-button:not(.collapsed){
    color:var(--black);
    background: #efc6c65e;
    box-shadow:none;
  }
  .accordion-button:focus{
    box-shadow:0 0 0 0.2rem rgba(173,23,28,.3);
  }
  .accordion-button::after{
    filter: brightness(0);
  }
  .badge-icon{
    width:2.25rem;
    height:2.25rem;
  }
  .bg-faqs{
    background:rgba(255, 255, 255, 0.07) !important;
  }
  .faqs-icon{
    color:var(--red-lg) !important;
  } 
/* ========== end ============ */

/* =========== review css =========== */
 .review-header {
    padding: 60px 0 24px;
    text-align: center;
  }

  .review-header h2 {
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.5px;
  }

  .text-muted-custom {
    color: var(--text-muted);
  }

  /* Sticky Left Sidebar */
  @media (min-width: 992px) {
    .sticky-sidebar {
      position: sticky;
      top: 100px;
      z-index: 100;
    }
  }

  .stats-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
  }

  .rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
  }

  .stars-group i {
    color: #ffc107;
    font-size: 1.1rem;
    margin: 0 1px;
  }

  .progress {
    height: 8px;
    border-radius: var(--radius);
    background-color: rgba(0, 0, 0, 0.08);
  }

  .progress-bar {
    background-color: #ffc107;
  }

  .btn-google-review {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: var(--transition);
  }

  .btn-google-review:hover {
    background-color: rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
  }

  .btn-book-repair {
    background-color: var(--red);
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-book-repair:hover {
    background-color: var(--red-lg);
    color: var(--white);
    transform: translateY(-2px);
  }

  /* Review Cards */
  .review-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(173, 23, 28, 0.25);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
  }

  .avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.08);
  }

  .reviewer-name {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
    font-size: 1.05rem;
  }

  .review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .badge-verified {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(25, 135, 84, 0.2);
    white-space: nowrap;
  }

  .badge-google {
    background-color: rgba(66, 133, 244, 0.08);
    color: #4285F4;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(66, 133, 244, 0.2);
    white-space: nowrap;
  }

  .badge-google svg {
    margin-right: 5px;
  }

  .review-text {
    color: rgba(0, 0, 0, 0.72);
    font-size: 0.95rem;
    line-height: 1.6;
  }
/* ========== end  ============= */

/* ========= privacy-policy  Section css ============= */
  .custom-badge {
    background-color: rgba(173, 23, 28, 0.08) !important;
    color: var(--red) !important;
  }

 .custom-sticky{
    position: sticky;
    top: 90px;  
    z-index: 10;
}@media (min-width: 992px){
    .custom-sticky{
        position: sticky;
        top: 90px;
        z-index: 10;
    }
}
  .sidebar-icon {
    color: var(--red);
  }

  .icon-box-accent {
    width: 40px;
    height: 40px;
    background: rgba(173, 23, 28, 0.06);
    color: var(--red);
  }

  .custom-tick-list li {
    position: relative;
    padding-left: 26px;
  }

  .custom-tick-list li .tick-icon {
    color: var(--red);
  }

  .custom-callout {
    border-color: var(--red) !important;
  }

  .custom-callout-icon {
    color: var(--red);
  }

  .btn-theme-red {
    background-color: var(--red);
    color: white !important;
    transition: all 0.2s ease-in-out;
  }

  .btn-theme-red:hover {
    background-color: #cb3c43;
  }
/* ===== end =============== */

/* ====== cookies css ========== */

  .custom-badge {
    background-color: rgba(173, 23, 28, 0.08) !important;
    color: var(--red) !important;
  }

@media (min-width: 992px) {
    .cookies-sticky {
        position: sticky !important;
        top: 90px; 
        z-index: 10;
    }
}
  .sidebar-icon {
    color: var(--red);
  }
  .icon-box-accent {
    width: 40px;
    height: 40px;
    background: rgba(173, 23, 28, 0.06);
    color: var(--red);
  }

  .custom-tick-list li {
    position: relative;
    padding-left: 26px;
  }

  .custom-tick-list li .tick-icon {
    color: var(--red);
  }

  .custom-callout {
    border-color: var(--red) !important;
  }

  .custom-callout-icon {
    color: var(--red);
  }

  .btn-theme-red {
    background-color: var(--red);
    color: white !important;
    transition: all 0.2s ease-in-out;
  }

  .btn-theme-red:hover {
    background-color: rgba(173, 23, 28, 0.08);
  }
/* ============ end ============= */

/* ========= term and condition css ========== */
 .custom-badge {
    background-color: #cb3c43 !important;
    color: var(--red) !important;
  }

  @media (min-width: 992px) {
    .terms-sidebar-sticky {
      position: sticky;
      top: 90px;
      z-index: 10;
    }
  }
  .sidebar-icon {
    color: var(--red);
  }

  .icon-box-accent {
    width: 40px;
    height: 40px;
    background: rgba(173, 23, 28, 0.06);
    color: var(--red);
  }

  .custom-tick-list li {
    position: relative;
    padding-left: 26px;
  }

  .custom-tick-list li .tick-icon {
    color: var(--red);
  }

  .custom-callout {
    border-color: var(--red) !important;
  }

  .custom-callout-icon {
    color: var(--red);
  }

  .btn-theme-red {
    background-color: var(--red);
    color: white !important;
    transition: all 0.2s ease-in-out;
  }

  .btn-theme-red:hover {
    background-color: #cb3c43;
  }
/* ======== end =========== */

/* ===== Footer ========== */


    .newsletter-bar {
      background: #0f1620;
      border-bottom: 1px solid #1a2030;
      padding: 32px 0;
    }

    .newsletter-bar .badge-pill {
      background: #261313;
      border: 1px solid #ad171c;
      border-radius: 999px;
      color: #ad171c;
      font-size: 12px;
      padding: 5px 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 10px;
    }

    .newsletter-bar h2 {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .newsletter-bar p {
      font-size: 13.5px;
      color: #888;
      margin: 0;
    }

    .email-form {
      display: flex;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #2a2f3a;
      background: #111820;
      max-width: 400px;
    }

    .email-form input {
      background: transparent;
      border: none;
      outline: none;
      color: #ccc;
      font-size: 14px;
      padding: 0 16px;
      flex: 1;
    }

    .email-form input::placeholder {
      color: #444;
    }

    .email-form button {
      background: #ad171c;
      border: none;
      color: #ffffff;
      font-size: 14px;
      font-weight: 600;
      padding: 12px 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    .email-form button:hover {
      background: #ad171c;
    }

    .newsletter-flash {
      font-size: 13px;
      font-weight: 500;
      line-height: 1.4;
      padding: 8px 12px;
      border-radius: 8px;
    }

    .newsletter-flash--success {
      background: rgba(22, 163, 74, 0.15);
      color: #86efac;
      border: 1px solid rgba(134, 239, 172, 0.35);
    }

    .newsletter-flash--error {
      background: rgba(173, 23, 28, 0.18);
      color: #fecaca;
      border: 1px solid rgba(254, 202, 202, 0.35);
    }

    footer {
      background: #f8fafc;
      color: #aaa;
      padding: 56px 0 0;
    }

    .logo-text {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .logo-text i {
      font-size: 22px;
      color: #ad171c;
    }

    .brand-desc {
      font-size: 13.5px;
      color: var(--black);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid #2a2f3a;
      color: var(--black);
      font-size: 15px;
      margin-right: 7px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .social-icons a:hover {
      background: #1e2330;
      color: var(--white);
      border-color: #444;
    }

    .col-heading {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 9px;
    }

    .footer-links a {
      color: var(--black);
      text-decoration: none;
      font-size: 13.5px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--red);
    }

    .footer-links a.green {
      color: #ad171c;
      font-weight: 500;
    }

    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 13.5px;
    }

    .contact-row i {
      color: var(--black);
      font-size: 16px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .contact-row a {
      color: var(--black);
      text-decoration: none;
    }

    .contact-row a:hover,
    .contact-row .green {
      color: #ad171c;
    }

    .hours-block {
      margin-top: 20px;
    }

    .hours-label {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 10px;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: var(--black);
      margin-bottom: 5px;
    }

    .hours-row span:last-child {
      color: var(--black);
      font-weight: 500;
    }

    .hours-note {
      font-size: 12px;
      color: var(--black);
      margin-top: 6px;
    }

    .hours-note a {
      color: var(--black);
      text-decoration: none;
    }

    .mail-box {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      background: #efc6c65e;
      border: 1px solid #ad171c;
      border-radius: 10px;
      padding: 13px 15px;
      margin-top: 16px;
    }

    .mail-box i {
      font-size: 19px;
      color: #ad171c;
      margin-top: 1px;
    }

    .mail-box .mb-title {
      font-size: 13px;
      font-weight: 600;
      color: #ad171c;
      margin-bottom: 3px;
    }

    .mail-box .mb-desc {
      font-size: 12px;
      color: #ad4347;
      line-height: 1.5;
    }

    .quick-links-panel {
      background: #4d2829;
      border: 1px solid #1e2638;
      border-radius: 12px;
      overflow: hidden;
    }

    .quick-links-panel .panel-title {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: #444;
      padding: 16px 18px 10px;
      border-bottom: 1px solid #1a2030;
    }

    .panel-item {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 13px 18px;
      border-bottom: 1px solid #131b26;
      color: #888;
      font-size: 13.5px;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
    }

    .panel-item:last-child {
      border-bottom: none;
    }

    .panel-item i {
      font-size: 17px;
      color: #555;
      transition: color 0.2s;
    }

    .panel-item:hover {
      background: #161f2e;
      color: #fff;
    }

    .panel-item:hover i {
      color: #ad171c;
    }

    .panel-item .arrow {
      margin-left: auto;
      font-size: 13px;
      color: #333;
    }

    .panel-item:hover .arrow {
      color: #ad171c;
    }

    .divider {
      border-color: #181e28;
    }

    .footer-bottom {
      margin-top: 48px;
      border-top: 1px solid #181e28;
      padding: 18px 0;
      font-size: 12px;
      color: #383e4a;
    }

    .footer-pay {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
    }

    .footer-pay__label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #383e4a;
      margin-right: 2px;
    }

    .pay-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #252b38;
      border-radius: 5px;
      padding: 3px 9px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: #9aa3b2;
      background: rgba(255, 255, 255, 0.03);
      line-height: 1.2;
    }
/* ======== end ============ */

/* ===== cookies ======== */
 .page-demo {
    padding: 40px 32px;
    color: var(--text-muted);
    font-size: 14px;
    max-width: 900px;
    margin: 0 auto;
  }

  .cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--white-dim);
    padding: 22px 40px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(100%);
    animation: rise 0.5s var(--transition) forwards;
    z-index: 111111;
  }

  .cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  @keyframes rise {
    to { opacity: 1; transform: translateY(0); }
  }

  .cookie-banner__text {
    flex: 1;
    min-width: 240px;
  }

  .cookie-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red-lg);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .cookie-banner__eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-lg);
  }

  .cookie-banner h2 {
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 600;
    color: var(--black);
  }

  .cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
    font-weight: 400;
  }

  .cookie-banner p a {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
  }

  .cookie-banner p a:hover {
    border-color: var(--red-lg);
  }

  .cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
  }

  .cookie-banner__actions button {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s ease, background var(--transition), border-color var(--transition);
  }

  .cookie-banner__actions button:active {
    transform: scale(0.97);
  }

  .btn-accept {
    background: var(--red);
    color: #ffffff;
  }

  .btn-accept:hover {
    background: var(--red-lg);
  }

  .btn-deny {
    background: var(--black);
    color: var(--white);
    border-color: var(--white-dim);
  }


  .cookie-banner__status {
    display: none;
    font-size: 14px;
    color: var(--text-muted);
  }

  .cookie-banner.is-answered .cookie-banner__text,
  .cookie-banner.is-answered .cookie-banner__actions {
    display: none;
  }

  .cookie-banner.is-answered .cookie-banner__status {
    display: block;
  }

  @media (max-width: 720px) {
    .cookie-banner {
      padding: 20px 20px 18px;
    }
    .cookie-banner__inner {
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
    }
    .cookie-banner__actions {
      flex-direction: column-reverse;
      flex-direction: row;  
      gap: 10px;
       width: 100%;
    }
    .cookie-banner__actions button {
       flex: 1;                  
        width: auto;
        padding: 13px 20px;
    }
    .cookie-banner h2 { font-size: 18px; }
    .cookie-banner p { font-size: 13.5px; }
  }
/* ===== end ====== */

/* ========  purchased popup  css ========= */
     .custom-toast-container {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1050;
            width: 360px; 
        }

        .toast-widget {
            width: 100%;
            border-radius: 16px !important;
            opacity: 0;
            transform: translateY(40px) scale(0.95); 
            transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.08) !important;
        }

        .toast-widget.show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .live-dot {
            width: 9px;
            height: 9px;
            background-color: var(--red); 
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5); }
            70% { box-shadow: 0 0 0 6px rgba(220, 53, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }

        .widget-img-box {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            overflow: hidden;
            background: #f8f9fa;
        }

        @media (max-width: 768px) {
            .custom-toast-container {
                bottom: 20px;
                left: 20px;
                width: 340px;
            }
        }

        @media (max-width: 480px) {
            .custom-toast-container {
                bottom: 15px;
                left: 15px;
                width: calc(100% - 30px); 
                max-width: 100%;
            }
            .toast-widget {
                padding: 12px !important;
            }
        }

        @media (max-width: 340px) {
            .custom-toast-container {
                bottom: 10px;
                left: 10px;
                width: calc(100% - 20px); 
            }
            .toast-widget {
                padding: 10px !important; 
                gap: 10px !important;
            }
            .widget-img-box {
                width: 44px; 
                height: 44px;
                border-radius: 8px;
            }
            #productText {
                font-size: 13px !important; 
            }
            .text-muted {
                font-size: 11px !important;
            }
            .btn-close {
                margin: 8px !important; 
            }
        }
/* ======== end ========== */

/* ======== catalog admin workflow ========= */
.catalog-stat-card,
.catalog-panel,
.catalog-form-panel,
.catalog-table-panel {
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(17, 21, 28, 0.05);
}

.catalog-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px;
}

.catalog-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(173, 23, 28, 0.08);
  color: var(--red);
  font-size: 20px;
}

.catalog-stat-value {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  color: #11151c;
}

.catalog-stat-label {
  margin-top: 4px;
  font-size: 0.82rem;
  color: #6b7280;
}

.catalog-panel-head {
  padding: 18px 22px;
  border-bottom: 1px solid #eef2f7;
}

.catalog-panel-body {
  padding: 22px;
}

.catalog-panel-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid #e6ebf2;
  border-radius: 12px;
  text-decoration: none;
  color: #11151c;
  font-weight: 600;
  transition: var(--transition);
}

.catalog-panel-link:hover {
  border-color: rgba(173, 23, 28, 0.35);
  background: rgba(173, 23, 28, 0.03);
  color: var(--red);
}

.catalog-table-panel {
  overflow: hidden;
}

.catalog-table-panel .table {
  margin-bottom: 0;
}

.catalog-form-panel {
  overflow: hidden;
}

.catalog-image-preview {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  cursor: pointer;
  display: block;
}

.catalog-image-preview.is-wide {
  width: 160px;
  height: 80px;
}

.catalog-image-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: 1 / 1;
}

.catalog-image-preview.is-wide .catalog-image-preview-img {
  aspect-ratio: 2 / 1;
}

.catalog-image-preview-img.is-placeholder {
  opacity: 0.45;
  object-fit: contain;
  padding: 10px;
}

.catalog-image-preview-zoom {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(17, 21, 28, 0.72);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  pointer-events: none;
}

.catalog-image-modal-frame {
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.catalog-image-modal-frame.is-wide {
  width: min(100%, 720px);
  aspect-ratio: 2 / 1;
}

.catalog-image-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.25rem;
  z-index: 1045;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(18, 140, 70, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: wa-float-in 0.45s ease both, wa-soft-pulse 2.8s ease-in-out 0.8s infinite;
}

.wa-float i {
  font-size: 1.55rem;
  line-height: 1;
}

.wa-float:hover,
.wa-float:focus-visible {
  color: #fff !important;
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(18, 140, 70, 0.34);
  outline: none;
}

.wa-float:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 0 0 6px rgba(37, 211, 102, 0.55);
}

@keyframes wa-float-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wa-soft-pulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(18, 140, 70, 0.28);
  }
  50% {
    box-shadow: 0 12px 30px rgba(18, 140, 70, 0.38), 0 0 0 8px rgba(37, 211, 102, 0.12);
  }
}

@media (max-width: 575.98px) {
  .wa-float {
    right: 0.9rem;
    bottom: 0.95rem;
    width: 3.15rem;
    height: 3.15rem;
  }

  .wa-float i {
    font-size: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float {
    animation: none;
  }

  .wa-float:hover,
  .wa-float:focus-visible {
    transform: none;
  }
}
/* ======== end ========= */