 :root {
   --primary: #1D4077;
   --primary-dark: #15315c;
   --primary-light: #2a58a3;
   --secondary: #F16522;
   --secondary-dark: #d4561a;
   --secondary-light: #f58d56;
   --white: #FFFFFF;
   --off-white: #F9FAFB;
   --light-gray: #E2E8F0;
   --gray: #64748B;
   --text: #1E293B;
   --text-muted: #64748B;
   --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 *,
 *::before,
 *::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   font-family: 'Cairo', 'Tajawal', sans-serif;
   background: var(--white);
   color: var(--text);
   overflow-x: hidden;
   direction: rtl;
 }

 /* ─── BRANDS SECTION ─── */
 .brands-section {
   padding: 60px 0;
   background: var(--white);
   text-align: center;
 }

 .brands-title {
   font-size: 28px;
   font-weight: 800;
   color: var(--primary);
   margin-bottom: 40px;
 }

 .brands-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
   gap: 20px;
   align-items: center;
 }

 .brand-item {
   padding: 24px;
   border-radius: 16px;
   background: var(--off-white);
   border: 1px solid var(--light-gray);
   transition: var(--transition);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 12px;
   cursor: pointer;
 }

 .brand-item:hover {
   background: var(--white);
   border-color: var(--secondary);
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
 }

 .brand-item i {
   font-size: 40px;
   color: var(--primary);
   opacity: 0.6;
   transition: var(--transition);
 }

 .brand-item:hover i {
   opacity: 1;
   color: var(--secondary);
 }

 .brand-item span {
   font-size: 14px;
   font-weight: 700;
   color: var(--text);
 }

 /* ─── ABOUT SECTION ─── */
 .about-section {
   padding: 80px 0;
   background: var(--primary);
   color: var(--white);
   overflow: hidden;
 }

 .about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
 }

 .about-text h2 {
   font-size: 42px;
   font-weight: 900;
   line-height: 1.2;
   margin-bottom: 24px;
   color: var(--white);
 }

 .about-text h2 span {
   color: var(--secondary);
 }

 .about-text p {
   font-size: 17px;
   line-height: 1.8;
   color: rgba(255, 255, 255, 0.7);
   margin-bottom: 30px;
 }

 .about-features {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
 }

 .about-feat {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .about-feat i {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: var(--secondary);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   flex-shrink: 0;
 }

 .about-feat span {
   font-size: 15px;
   font-weight: 700;
 }

 .about-img {
   position: relative;
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
 }

 .about-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .about-experience {
   position: absolute;
   bottom: 30px;
   right: 30px;
   background: var(--secondary);
   padding: 24px;
   border-radius: 16px;
   text-align: center;
   box-shadow: 0 10px 30px rgba(200, 16, 46, 0.4);
 }

 .about-experience strong {
   font-size: 38px;
   font-weight: 900;
   display: block;
   line-height: 1;
 }

 .about-experience span {
   font-size: 14px;
   font-weight: 700;
 }

 @media (max-width: 992px) {
   .about-grid {
     grid-template-columns: 1fr;
     text-align: center;
   }

   .about-features {
     justify-content: center;
   }

   .about-experience {
     right: auto;
     left: 50%;
     transform: translateX(-50%);
   }
 }

 /* ─── LOADER ─── */
 #loader {
   position: fixed;
   inset: 0;
   background: var(--primary);
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 9999;
   transition: opacity 0.5s, visibility 0.5s;
   animation: loaderHide 0s 1.2s forwards;
 }

 @keyframes loaderHide {
   to {
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
   }
 }

 #loader.hidden {
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
 }

 .loader-ring {
   width: 60px;
   height: 60px;
   border: 3px solid rgba(255, 255, 255, 0.1);
   border-top-color: var(--secondary);
   border-radius: 50%;
   animation: spin 0.9s linear infinite;
 }

 @keyframes spin {
   to {
     transform: rotate(360deg);
   }
 }

 /* ─── TOP BAR ─── */
 .top-bar {
   background: var(--primary);
   padding: 9px 0;
   font-size: 13px;
 }

 .top-bar .container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
 }

 .top-bar-left,
 .top-bar-right {
   display: flex;
   align-items: center;
   gap: 20px;
 }

 .top-bar a {
   color: rgba(255, 255, 255, 0.75);
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 7px;
   transition: color var(--transition);
 }

 .top-bar a:hover {
   color: var(--white);
 }

 .top-bar i {
   color: var(--secondary);
 }

 .btn-login-top {
   background: var(--secondary);
   color: var(--white);
   font-weight: 700;
   font-size: 14px;
   height: 40px;
   min-width: 150px;
   border-radius: 10px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   transition: var(--transition);
 }

 .btn-login-top:hover {
   background: var(--secondary-dark);
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(200, 16, 46, 0.3);
 }

 .btn-app-top {
   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.3);
   color: rgba(255, 255, 255, 0.8);
   font-weight: 700;
   font-size: 13px;
   padding: 5px 16px;
   border-radius: 4px;
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 7px;
   transition: var(--transition);
 }

 .btn-app-top:hover {
   border-color: var(--white);
   color: var(--white);
 }

 /* ─── HEADER ─── */
 header {
   position: sticky;
   top: 0;
   z-index: 100;
   background: var(--white);
   box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
   padding: 12px;
 }

 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 72px;
   gap: 16px;
 }

 .logo {
   display: flex;
   align-items: center;
   gap: 10px;
   text-decoration: none;
   flex-shrink: 0;
 }

 .logo-icon {
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .logo-icon svg {
   width: 28px;
   height: 28px;
 }

 .logo-text .brand {
   font-size: 20px;
   font-weight: 900;
   color: var(--primary);
   letter-spacing: -0.5px;
 }

 .logo-text .sub {
   font-size: 10px;
   color: var(--secondary);
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
 }

 nav {
   display: flex;
   align-items: center;
   gap: 2px;
 }

 .nav-item {
   position: relative;
 }

 .nav-link {
   color: var(--text);
   text-decoration: none;
   font-size: 14px;
   font-weight: 700;
   padding: 8px 13px;
   border-radius: 6px;
   display: flex;
   align-items: center;
   gap: 5px;
   transition: var(--transition);
   white-space: nowrap;
 }

 .nav-link:hover {
   color: var(--secondary);
   background: rgba(200, 16, 46, 0.06);
 }

 .nav-link i {
   font-size: 11px;
   transition: transform var(--transition);
 }

 .nav-item:hover .nav-link i {
   transform: rotate(180deg);
 }

 .dropdown {
   position: absolute;
   top: calc(100% + 8px);
   right: 0;
   background: var(--white);
   border: 1px solid var(--light-gray);
   border-radius: 10px;
   min-width: 200px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
   opacity: 0;
   visibility: hidden;
   transform: translateY(-8px);
   transition: var(--transition);
   z-index: 200;
 }

 .nav-item:hover .dropdown {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
 }

 .dropdown a {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 12px 16px;
   color: var(--text);
   text-decoration: none;
   font-size: 13px;
   font-weight: 600;
   transition: var(--transition);
   border-bottom: 1px solid var(--light-gray);
 }

 .dropdown a:last-child {
   border-bottom: none;
 }

 .dropdown a:hover {
   color: var(--secondary);
   background: rgba(200, 16, 46, 0.04);
 }

 .dropdown a i {
   color: var(--secondary);
   width: 16px;
 }

 .header-actions {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .btn-buy {
   background: var(--primary);
   color: var(--white);
   font-weight: 700;
   font-size: 14px;
   height: 40px;
   min-width: 150px;
   border-radius: 10px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   transition: var(--transition);
   box-shadow: 0 4px 12px rgba(27, 42, 74, 0.12);
   border: 1px solid rgba(255, 255, 255, 0.05);
   white-space: nowrap;
 }

 .btn-buy:hover {
   background: var(--primary-light);
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(27, 42, 74, 0.25);
 }

 .btn-buy i {
   font-size: 14px;
   color: var(--white);
 }

 .btn-buy {
   background: var(--secondary);
   color: var(--white);
   font-weight: 700;
   font-size: 13px;
   height: 40px;
   min-width: 120px;
   border-radius: 10px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   transition: var(--transition);
   box-shadow: 0 4px 12px rgba(241, 101, 34, 0.2);
   padding: 0 15px;
   white-space: nowrap;
 }

 .btn-buy:hover {
   background: var(--secondary-dark);
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(241, 101, 34, 0.3);
 }

 .btn-compare {
   background: var(--primary);
   color: var(--white);
   font-weight: 700;
   font-size: 13px;
   height: 40px;
   min-width: 100px;
   border-radius: 10px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   transition: var(--transition);
   box-shadow: 0 4px 12px rgba(29, 64, 119, 0.15);
   padding: 0 15px;
   white-space: nowrap;
 }

 .btn-compare:hover {
   background: var(--primary-dark);
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(29, 64, 119, 0.25);
 }

 .btn-compare i {
   font-size: 14px;
   color: var(--secondary);
 }

 .compare-badge {
   background: var(--white);
   color: var(--primary);
   font-size: 10px;
   width: 18px;
   height: 18px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 2px;
   font-weight: 900;
 }

 .btn-rent {
   background: var(--secondary);
   color: var(--white);
   font-weight: 700;
   font-size: 13px;
   padding: 8px 16px;
   border-radius: 6px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   transition: var(--transition);
   box-shadow: 0 4px 12px rgba(200, 16, 46, 0.15);
   border: 1px solid rgba(255, 255, 255, 0.1);
   white-space: nowrap;
 }

 .btn-rent:hover {
   background: var(--secondary-dark);
   transform: translateY(-1px);
   box-shadow: 0 6px 15px rgba(200, 16, 46, 0.25);
 }

 .btn-rent i {
   font-size: 12px;
 }

 .search-btn {
   width: 40px;
   height: 40px;
   border-radius: 10px;
   background: var(--off-white);
   border: 1px solid var(--light-gray);
   color: var(--gray);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
 }

 .search-btn:hover {
   color: var(--secondary);
   border-color: var(--secondary);
 }

 .hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
   padding: 8px;
   background: none;
   border: none;
 }

 .hamburger span {
   width: 24px;
   height: 2px;
   background: var(--primary);
   border-radius: 2px;
   transition: var(--transition);
 }

 .mobile-nav {
   display: none;
   flex-direction: column;
   background: var(--white);
   border-top: 2px solid var(--secondary);
   padding: 16px;
 }

 .mobile-nav.open {
   display: flex;
 }

 .mobile-nav a {
   color: var(--text);
   text-decoration: none;
   padding: 12px 0;
   font-size: 15px;
   font-weight: 700;
   border-bottom: 1px solid var(--light-gray);
   transition: color var(--transition);
 }

 .mobile-nav a:hover {
   color: var(--secondary);
 }

 /* ─── SEARCH OVERLAY ─── */
 .search-overlay {
   position: fixed;
   inset: 0;
   background: rgba(27, 42, 74, 0.92);
   z-index: 500;
   display: flex;
   align-items: flex-start;
   justify-content: center;
   padding-top: 15vh;
   opacity: 0;
   visibility: hidden;
   transition: var(--transition);
 }

 .search-overlay.open {
   opacity: 1;
   visibility: visible;
 }

 .search-box {
   width: 90%;
   max-width: 600px;
   display: flex;
   gap: 12px;
 }

 .search-box input {
   flex: 1;
   background: var(--white);
   border: 2px solid var(--secondary);
   border-radius: 10px;
   padding: 16px 20px;
   color: var(--text);
   font-family: 'Cairo', sans-serif;
   font-size: 16px;
   outline: none;
 }

 .search-box button {
   background: var(--secondary);
   color: var(--white);
   border: none;
   padding: 0 24px;
   border-radius: 10px;
   font-size: 18px;
   cursor: pointer;
 }

 .search-close {
   position: absolute;
   top: 24px;
   left: 24px;
   background: none;
   border: none;
   color: var(--white);
   font-size: 28px;
   cursor: pointer;
 }

 /* ─── CONTAINER ─── */
 .container {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 24px;
 }

 /* ─── HERO / SLIDER ─── */
 .hero {
   position: relative;
   height: 92vh;
   min-height: 620px;
   background: var(--primary);
   overflow: hidden;
 }

 .hero-swiper {
   height: 100%;
 }

 .hero-slide {
   position: relative;
   height: 100%;
   overflow: hidden;
   display: flex;
   align-items: center;
 }

 /* Background image with parallax feel */
 .hero-slide-bg {
   position: absolute;
   inset: 0;
   background-size: cover;
   background-position: center;
   transform: scale(1);
 }

 .swiper-slide-active .hero-slide-bg {
   transform: scale(1);
 }


 /* Content area */
 .hero-content {
   position: relative;
   z-index: 5;
   /* max-width: 600px; */
 }

 .hero-eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--secondary);
   color: var(--white);
   font-size: 11px;
   font-weight: 800;
   letter-spacing: 2.5px;
   padding: 7px 20px;
   border-radius: 4px;
   margin-bottom: 24px;
   text-transform: uppercase;
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.6s ease 0.1s;
 }

 .swiper-slide-active .hero-eyebrow {
   opacity: 1;
   transform: translateY(0);
 }

 .hero-car-name {
   font-size: clamp(12px, 2vw, 16px);
   font-weight: 700;
   color: rgba(255, 255, 255, 0.55);
   letter-spacing: 3px;
   text-transform: uppercase;
   margin-bottom: 10px;
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.6s ease 0.15s;
 }

 .swiper-slide-active .hero-car-name {
   opacity: 1;
   transform: translateY(0);
 }

 .hero-title {
   font-size: clamp(36px, 5.5vw, 72px);
   font-weight: 900;
   line-height: 1.08;
   margin-bottom: 20px;
   color: var(--white);
   opacity: 0;
   transform: translateY(30px);
   transition: all 0.7s ease 0.25s;
 }

 .swiper-slide-active .hero-title {
   opacity: 1;
   transform: translateY(0);
 }

 .hero-title .accent {
   color: var(--secondary);
 }

 .hero-sub {
   color: rgba(255, 255, 255, 0.65);
   font-size: 15px;
   line-height: 1.9;
   margin-bottom: 36px;
   max-width: 480px;
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.6s ease 0.35s;
 }

 .swiper-slide-active .hero-sub {
   opacity: 1;
   transform: translateY(0);
 }

 .hero-actions {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.6s ease 0.45s;
 }

 .swiper-slide-active .hero-actions {
   opacity: 1;
   transform: translateY(0);
 }

 .btn-hero-primary {
   background: var(--primary);
   color: var(--white);
   font-weight: 800;
   font-size: 14px;
   padding: 14px 30px;
   border-radius: 6px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   transition: var(--transition);
   box-shadow: 0 6px 24px rgba(10, 25, 47, 0.35);
 }

 .btn-hero-primary:hover {
   background: var(--primary-dark);
   transform: translateY(-2px);
 }

 .btn-hero-secondary {
   background: rgba(255, 255, 255, 0.1);
   -webkit-backdrop-filter: blur(8px);
   backdrop-filter: blur(8px);
   border: 1.5px solid rgba(255, 255, 255, 0.3);
   color: var(--white);
   font-weight: 700;
   font-size: 14px;
   padding: 14px 30px;
   border-radius: 6px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   transition: var(--transition);
 }

 .btn-hero-secondary:hover {
   border-color: var(--white);
   background: rgba(255, 255, 255, 0.18);
 }

 /* Floating price card */
 .hero-price-card {
   position: absolute;
   bottom: 48px;
   left: 40px;
   z-index: 5;
   background: rgba(255, 255, 255, 0.1);
   -webkit-backdrop-filter: blur(12px);
   backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 16px;
   padding: 18px 28px;
   display: flex;
   align-items: center;
   gap: 18px;
   opacity: 0;
   transform: translateY(16px);
   transition: all 0.6s ease 0.6s;
 }

 .swiper-slide-active .hero-price-card {
   opacity: 1;
   transform: translateY(0);
 }

 .hero-price-card .price-label {
   font-size: 11px;
   color: rgba(255, 255, 255, 0.65);
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
 }

 .hero-price-card .price-amount {
   font-size: 30px;
   font-weight: 900;
   color: var(--white);
   line-height: 1;
 }

 .hero-price-card .price-period {
   font-size: 12px;
   color: rgba(255, 255, 255, 0.5);
 }

 .hero-price-card .price-divider {
   width: 1px;
   height: 44px;
   background: rgba(255, 255, 255, 0.2);
 }

 .hero-price-card .price-badge-icon {
   width: 48px;
   height: 48px;
   background: var(--secondary);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   color: var(--white);
 }

 /* Slide counter */
 .hero-counter {
   position: absolute;
   bottom: 56px;
   right: 40px;
   z-index: 5;
   display: flex;
   align-items: center;
   gap: 8px;
   color: rgba(255, 255, 255, 0.6);
   font-size: 13px;
   font-weight: 700;
 }

 .hero-counter .current {
   font-size: 32px;
   font-weight: 900;
   color: var(--white);
 }

 .hero-counter .sep {
   font-size: 20px;
   opacity: 0.3;
 }

 /* Swiper nav */
 .swiper-pagination-bullet {
   background: rgba(255, 255, 255, 0.4) !important;
   width: 8px !important;
   height: 8px !important;
   transition: var(--transition);
 }

 .swiper-pagination-bullet-active {
   background: var(--secondary) !important;
   width: 28px !important;
   border-radius: 4px !important;
 }

 .swiper-button-next,
 .swiper-button-prev {
   width: 50px !important;
   height: 50px !important;
   background: rgba(255, 255, 255, 0.1) !important;
   -webkit-backdrop-filter: blur(8px);
   backdrop-filter: blur(8px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   color: var(--white) !important;
   transition: var(--transition);
 }

 .swiper-button-next::after,
 .swiper-button-prev::after {
   font-size: 15px !important;
   font-weight: 900 !important;
 }

 .swiper-button-next:hover,
 .swiper-button-prev:hover {
   background: var(--secondary) !important;
   border-color: var(--secondary);
 }

 /* old swiper styles removed — defined above in hero section */

 /* ─── SERVICE CARDS ─── */
 .services-section {
   background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
   padding: 100px 0;
   position: relative;
 }

 .services-section .container {
   max-width: 1600px;
 }

 .services-section-header {
   text-align: center;
   margin-bottom: 70px;
   color: var(--white);
 }

 .services-section-header h2 {
   font-size: clamp(28px, 4.5vw, 42px);
   font-weight: 900;
   margin-bottom: 24px;
   line-height: 1.3;
   letter-spacing: -0.5px;
 }

 .services-section-header p {
   font-size: 17px;
   color: rgba(255, 255, 255, 0.7);
   max-width: 800px;
   margin: 0 auto;
   font-weight: 500;
 }

 .services-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 18px;
   align-items: stretch;
 }

 .service-card {
   background: rgba(255, 255, 255, 0.12);
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 15px;
   padding: 45px 25px;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   cursor: pointer;
   transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
   text-decoration: none;
   position: relative;
   min-height: 260px;
   justify-content: center;
 }

 /* Ensure icon is at the top even with justify-content center/end */
 .service-card-icon-circle {
   position: absolute;
   top: 25px;
   right: 25px;
   width: 42px;
   height: 42px;
   border-radius: 50%;
   border: 1.5px solid rgba(255, 255, 255, 0.7);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   font-size: 18px;
   transition: var(--transition);
 }

 .service-card:hover {
   background: rgba(255, 255, 255, 0.18);
   transform: translateY(-12px);
   border-color: rgba(255, 255, 255, 0.4);
   box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
 }

 .service-card-icon-circle {
   position: absolute;
   top: 35px;
   right: 35px;
   width: 48px;
   height: 48px;
   border-radius: 50%;
   border: 2px solid rgba(255, 255, 255, 0.8);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   font-size: 20px;
   transition: var(--transition);
 }

 .service-card:hover .service-card-icon-circle {
   background: var(--white);
   color: var(--secondary);
   border-color: var(--white);
   transform: scale(1.1);
 }

 .service-card-text {
   color: var(--white);
   width: 100%;
 }

 .service-card-text span {
   display: block;
   font-size: 24px;
   font-weight: 800;
   color: var(--white);
   margin-bottom: 20px;
 }

 .service-card-text p {
   font-size: 15px;
   color: rgba(255, 255, 255, 0.85);
   line-height: 1.8;
   font-weight: 400;
   max-width: 90%;
   margin: 0 auto;
 }

 @media (max-width: 992px) {
   .services-grid {
     grid-template-columns: 1fr 1fr;
   }
 }

 @media (max-width: 768px) {
   .services-grid {
     grid-template-columns: 1fr;
     gap: 20px;
   }

   .service-card {
     padding: 50px 30px;
     min-height: 300px;
   }

   .services-section-header h2 {
     font-size: 28px;
   }
 }

 /* ─── SECTION HELPERS ─── */
 .section-pad {
   padding: 80px 0;
 }

 .section-heading {
   text-align: center;
   margin-bottom: 50px;
 }

 .section-title {
   font-size: clamp(26px, 3.8vw, 40px);
   font-weight: 900;
   color: var(--primary);
   line-height: 1.2;
 }

 .section-title .red {
   color: var(--secondary);
 }

 .section-desc {
   color: var(--gray);
   font-size: 15px;
   margin-top: 10px;
 }

 .red-line {
   width: 60px;
   height: 4px;
   background: var(--secondary);
   margin: 14px auto 0;
   border-radius: 3px;
 }

 .section-tag {
   display: inline-block;
   background: rgba(200, 16, 46, 0.08);
   color: var(--secondary);
   font-size: 12px;
   font-weight: 800;
   letter-spacing: 2px;
   padding: 5px 16px;
   border-radius: 20px;
   border: 1px solid rgba(200, 16, 46, 0.2);
   margin-bottom: 12px;
   text-transform: uppercase;
 }

 /* ─── WHY US ─── */
 .why-section {
   background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
   padding: 80px 0;
 }

 .why-title {
   font-size: clamp(26px, 3.8vw, 40px);
   font-weight: 900;
   color: var(--white);
   text-align: center;
   margin-bottom: 12px;
 }

 .why-subtitle {
   text-align: center;
   color: rgba(255, 255, 255, 0.6);
   font-size: 15px;
   margin-bottom: 50px;
 }

 .why-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
 }

 .why-card {
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 14px;
   padding: 36px 28px;
   text-align: center;
   transition: var(--transition);
 }

 .why-card:hover {
   background: rgba(255, 255, 255, 0.1);
   transform: translateY(-4px);
   border-color: var(--secondary);
 }

 .why-icon {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   border: 2px solid rgba(200, 16, 46, 0.5);
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 18px;
   font-size: 24px;
   color: var(--secondary);
   transition: var(--transition);
 }

 .why-card:hover .why-icon {
   background: var(--secondary);
   color: var(--white);
   border-color: var(--secondary);
 }

 .why-card h3 {
   font-size: 17px;
   font-weight: 800;
   color: var(--white);
   margin-bottom: 10px;
 }

 .why-card p {
   color: rgba(255, 255, 255, 0.6);
   font-size: 14px;
   line-height: 1.8;
 }

 /* ─── BRANDS ─── */
 .brands-section {
   background: var(--off-white);
   padding: 80px 0;
 }

 .brands-grid {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: 16px;
 }

 .brand-item {
   background: var(--white);
   border: 1px solid var(--light-gray);
   border-radius: 12px;
   padding: 24px 16px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 12px;
   cursor: pointer;
   transition: var(--transition);
   text-decoration: none;
 }

 .brand-item:hover {
   border-color: var(--secondary);
   transform: translateY(-4px);
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
 }

 .brand-logo {
   width: 70px;
   height: 50px;
   object-fit: contain;
   filter: grayscale(1);
   transition: filter var(--transition);
 }

 .brand-item:hover .brand-logo {
   filter: grayscale(0);
 }

 .brand-logo-placeholder {
   font-size: 34px;
   color: var(--gray);
   transition: color var(--transition);
 }

 .brand-item:hover .brand-logo-placeholder {
   color: var(--secondary);
 }

 .brand-name {
   font-size: 12px;
   font-weight: 800;
   color: var(--gray);
   text-align: center;
   transition: color var(--transition);
 }

 .brand-item:hover .brand-name {
   color: var(--primary);
 }

 /* ─── CARS ─── */
 .cars-section {
   padding: 80px 0;
   background: var(--white);
 }

 .cars-section.bg-off {
   background: var(--off-white);
 }

 .cars-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 36px;
   flex-wrap: wrap;
   gap: 16px;
 }

 .cars-header .section-heading {
   margin-bottom: 0;
   text-align: right;
 }

 .cars-header .section-title {
   font-size: clamp(22px, 3vw, 34px);
 }

 .cars-nav {
   display: flex;
   gap: 10px;
 }

 .cars-nav-btn {
   width: 44px;
   height: 44px;
   border-radius: 10px;
   background: var(--white);
   border: 1px solid var(--light-gray);
   color: var(--primary);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
   font-size: 16px;
 }

 .cars-nav-btn:hover {
   background: var(--secondary);
   color: var(--white);
   border-color: var(--secondary);
 }

 /* Car Card */
 .car-card {
   background: var(--white);
   border: 1px solid var(--light-gray);
   border-radius: 14px;
   overflow: hidden;
   transition: var(--transition);
 }

 .car-card:hover {
   border-color: rgba(200, 16, 46, 0.3);
   transform: translateY(-6px);
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
 }

 .car-card-img {
   position: relative;
   height: 210px;
   overflow: hidden;
   background: var(--off-white);
 }

 .car-img-placeholder {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 80px;
   color: rgba(27, 42, 74, 0.08);
   transition: transform 0.4s ease;
 }

 .car-card:hover .car-img-placeholder {
   transform: scale(1.05);
 }

 .car-card:hover .car-card-img img {
   transform: scale(1.05);
 }

 .car-badge {
   position: absolute;
   top: 14px;
   right: 14px;
   font-size: 11px;
   font-weight: 800;
   padding: 4px 12px;
   border-radius: 4px;
   letter-spacing: 1px;
   text-transform: uppercase;
 }

 .badge-new {
   background: var(--secondary);
   color: var(--white);
 }

 .badge-used {
   background: var(--primary);
   color: var(--white);
 }

 .badge-rent {
   background: #16A34A;
   color: var(--white);
 }

 .badge-request {
   background: #f59e0b;
   color: var(--white);
 }

 .price-request-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: #f0f4f8;
   color: var(--primary);
   padding: 10px 20px;
   border-radius: 12px;
   font-size: 15px;
   font-weight: 800;
   border: 1px solid #e2e8f0;
   transition: all 0.3s ease;
   margin-bottom: 10px;
 }

 .price-request-badge i {
   color: var(--secondary);
   font-size: 14px;
 }

 .car-card:hover .price-request-badge {
   background: var(--primary);
   color: var(--white);
   border-color: var(--primary);
 }

 .car-card:hover .price-request-badge i {
   color: var(--white);
 }

 .fav-btn {
   position: absolute;
   top: 14px;
   left: 14px;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.85);
   border: 1px solid var(--light-gray);
   color: var(--gray);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 15px;
   transition: var(--transition);
 }

 .fav-btn:hover,
 .fav-btn.active {
   color: var(--secondary);
   border-color: var(--secondary);
 }

 .car-card-body {
   padding: 18px;
 }

 .car-title {
   font-size: 16px;
   font-weight: 800;
   color: var(--primary);
   margin-bottom: 4px;
 }

 .car-year-model {
   font-size: 12px;
   color: var(--gray);
   margin-bottom: 12px;
 }

 .car-specs {
   display: flex;
   flex-wrap: wrap;
   gap: 7px;
   margin-bottom: 14px;
 }

 .spec-tag {
   display: flex;
   align-items: center;
   gap: 5px;
   background: var(--off-white);
   border-radius: 6px;
   padding: 5px 10px;
   font-size: 11px;
   color: var(--text);
   font-weight: 600;
 }

 .spec-tag i {
   color: var(--secondary);
   font-size: 10px;
 }

 .car-price {
   font-size: 20px;
   font-weight: 900;
   color: var(--secondary);
   line-height: 1;
   margin-bottom: 4px;
 }

 .car-price-note {
   font-size: 12px;
   color: var(--gray);
   margin-bottom: 14px;
 }

 .km-badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: rgba(27, 42, 74, 0.06);
   border: 1px solid rgba(27, 42, 74, 0.12);
   border-radius: 6px;
   padding: 5px 12px;
   font-size: 12px;
   color: var(--primary);
   font-weight: 700;
   margin-bottom: 12px;
 }

 .km-badge i {
   color: var(--primary-light);
 }

 .btn-view-car {
   width: 100%;
   padding: 10px;
   border-radius: 8px;
   background: transparent;
   border: 1px solid var(--light-gray);
   color: var(--text);
   font-family: 'Cairo', sans-serif;
   font-size: 13px;
   font-weight: 700;
   cursor: pointer;
   transition: var(--transition);
   text-align: center;
   text-decoration: none;
   display: block;
 }

 .btn-view-car:hover {
   background: var(--secondary);
   color: var(--white);
   border-color: var(--secondary);
 }

 /* Rent per-day price button */
 .btn-rent-day {
   width: 100%;
   padding: 10px;
   border-radius: 8px;
   background: var(--secondary);
   border: none;
   color: var(--white);
   font-family: 'Cairo', sans-serif;
   font-size: 14px;
   font-weight: 800;
   cursor: pointer;
   transition: var(--transition);
   text-align: center;
   text-decoration: none;
   display: block;
 }

 .btn-rent-day:hover {
   background: var(--secondary-dark);
 }

 .more-btn-wrap {
   text-align: center;
   margin-top: 40px;
 }

 .btn-more {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: transparent;
   border: 2px solid var(--secondary);
   color: var(--secondary);
   font-family: 'Cairo', sans-serif;
   font-size: 15px;
   font-weight: 800;
   padding: 12px 40px;
   border-radius: 8px;
   cursor: pointer;
   text-decoration: none;
   transition: var(--transition);
 }

 .btn-more:hover {
   background: var(--secondary);
   color: var(--white);
 }

 .cars-swiper {
   padding-bottom: 4px !important;
 }

 /* ─── STATS BAR ─── */
 .stats-bar {
   background: var(--secondary);
   padding: 32px 0;
 }

 .stats-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
 }

 .stat-item {
   text-align: center;
   border-left: 1px solid rgba(255, 255, 255, 0.2);
 }

 .stat-item:last-child {
   border-left: none;
 }

 .stat-num {
   font-size: clamp(28px, 4vw, 44px);
   font-weight: 900;
   color: var(--white);
 }

 .stat-plus {
   color: rgba(255, 255, 255, 0.7);
 }

 .stat-label {
   font-size: 13px;
   color: rgba(255, 255, 255, 0.8);
   font-weight: 600;
   margin-top: 4px;
 }

 /* ─── SEARCH FILTER ─── */
 .search-section {
   background: var(--off-white);
   padding: 70px 0;
 }

 .filter-box {
   background: var(--white);
   border: 1px solid var(--light-gray);
   border-radius: 16px;
   padding: 36px;
   position: relative;
   overflow: hidden;
   box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
 }

 .filter-box::before {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   width: 160px;
   height: 4px;
   background: var(--secondary);
 }

 .filter-title {
   font-size: 20px;
   font-weight: 900;
   color: var(--primary);
   margin-bottom: 28px;
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .filter-title i {
   color: var(--secondary);
 }

 .filter-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
   gap: 16px;
   align-items: end;
 }

 .filter-group label {
   display: block;
   font-size: 12px;
   font-weight: 800;
   color: var(--primary);
   letter-spacing: 0.5px;
   margin-bottom: 8px;
 }

 .filter-select,
 .filter-input {
   width: 100%;
   background: var(--off-white);
   border: 1px solid var(--light-gray);
   color: var(--text);
   padding: 11px 14px;
   border-radius: 8px;
   font-family: 'Cairo', sans-serif;
   font-size: 13px;
   outline: none;
   appearance: none;
   -webkit-appearance: none;
   transition: border-color var(--transition);
 }

 .filter-select:focus,
 .filter-input:focus {
   border-color: var(--secondary);
 }

 .filter-select option {
   background: var(--white);
 }

 .condition-tabs {
   display: flex;
   gap: 8px;
 }

 .cond-btn {
   flex: 1;
   padding: 11px;
   border-radius: 8px;
   border: 1px solid var(--light-gray);
   background: var(--off-white);
   color: var(--gray);
   font-family: 'Cairo', sans-serif;
   font-size: 13px;
   font-weight: 700;
   cursor: pointer;
   transition: var(--transition);
 }

 .cond-btn.active {
   background: var(--secondary);
   color: var(--white);
   border-color: var(--secondary);
 }

 .btn-search {
   background: var(--primary);
   color: var(--white);
   border: none;
   font-family: 'Cairo', sans-serif;
   font-weight: 800;
   font-size: 15px;
   padding: 12px 28px;
   border-radius: 8px;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 8px;
   width: 100%;
   justify-content: center;
   transition: var(--transition);
 }

 .btn-search:hover {
   background: var(--primary-light);
 }

 /* ─── FOOTER REFINED ─── */
 footer {
   background: var(--primary);
   padding: 100px 0 50px;
   color: var(--white);
   font-family: 'Cairo', sans-serif;
   position: relative;
   overflow: hidden;
   border-top: 1px solid rgba(255, 255, 255, 0.05);
 }

 footer::before {
   content: '';
   position: absolute;
   top: -150px;
   right: -150px;
   width: 300px;
   height: 300px;
   background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
   pointer-events: none;
 }

 .footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 40px;
   margin-bottom: 60px;
 }

 .footer-brand-col {
   display: flex;
   flex-direction: column;
   gap: 15px;
 }

 .footer-brand-col .logo {
   transition: transform 0.3s ease;
 }

 .footer-brand-col .logo:hover {
   transform: scale(1.02);
 }

 .footer-loc,
 .footer-email {
   display: flex;
   align-items: center;
   gap: 12px;
   color: rgba(255, 255, 255, 0.6);
   font-size: 16px;
   transition: var(--transition);
   margin-bottom: 14px;
 }

 .footer-loc i,
 .footer-email i {
   color: var(--secondary);
   width: 18px;
   text-align: center;
 }

 .footer-email:hover {
   color: var(--white);
 }

 .footer-links-col h4 {
   font-size: 22px;
   font-weight: 800;
   margin-bottom: 30px;
   color: #fff;
   position: relative;
   padding-bottom: 12px;
 }

 .footer-links-col h4::after {
   content: '';
   position: absolute;
   bottom: 0;
   right: 0;
   width: 40px;
   height: 3px;
   background: var(--secondary);
   border-radius: 2px;
 }

 .footer-links-col ul {
   list-style: none;
   padding: 0;
 }

 .footer-links-col ul li {
   margin-bottom: 14px;
 }

 .footer-links-col ul li a {
   color: rgba(255, 255, 255, 0.6);
   text-decoration: none;
   font-size: 16px;
   transition: 0.3s;
   font-weight: 600;
   display: flex;
   align-items: center;
   gap: 8px;
 }

 .footer-links-col ul li a::before {
   content: '\f105';
   font-family: 'Font Awesome 6 Free';
   font-weight: 900;
   font-size: 12px;
   opacity: 0;
   transition: 0.3s;
   margin-left: -5px;
 }

 .footer-links-col ul li a:hover {
   color: var(--secondary);
   padding-right: 5px;
 }

 .footer-links-col ul li a:hover::before {
   opacity: 1;
   margin-left: 0;
 }

 .footer-social-section {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }

 .social-box {
   background: rgba(255, 255, 255, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.06);
   border-radius: 18px;
   padding: 24px;
   transition: 0.3s;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .social-box:hover {
   border-color: rgba(200, 16, 46, 0.3);
   background: rgba(255, 255, 255, 0.05);
   transform: translateY(-5px);
 }

 .social-box span {
   display: block;
   font-size: 14px;
   color: var(--white);
   font-weight: 700;
   margin-bottom: 20px;
   text-align: center;
 }

 .social-grid {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: 12px;
 }

 .social-grid a {
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 17px;
   transition: 0.3s;
   border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .social-grid a:hover {
   background: var(--secondary);
   border-color: var(--secondary);
   transform: translateY(-5px);
   box-shadow: 0 8px 15px rgba(200, 16, 46, 0.3);
 }

 .footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.08);
   padding-top: 30px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 20px;
 }

 .footer-bottom p {
   font-size: 14px;
   color: rgba(255, 255, 255, 0.5);
 }

 @media (max-width: 1200px) {
   .footer-grid {
     grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
     gap: 30px;
   }

   .social-grid {
     grid-template-columns: repeat(3, 1fr);
   }
 }

 @media (max-width: 992px) {
   .footer-grid {
     grid-template-columns: 1fr 1fr;
     gap: 50px;
   }

   .footer-brand-col {
     grid-column: span 2;
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
   }

   .social-grid {
     grid-template-columns: repeat(6, 1fr);
   }
 }

 @media (max-width: 768px) {
   footer {
     padding: 60px 0 30px;
   }

   .footer-grid {
     grid-template-columns: 1fr;
     gap: 40px;
     text-align: center;
   }

   .footer-brand-col {
     grid-column: span 1;
     display: flex;
     flex-direction: column;
     text-align: center;
   }

   .footer-brand-col .logo {
     justify-content: center;
   }

   .footer-loc,
   .footer-email {
     justify-content: center;
   }

   .footer-links-col h4::after {
     right: 50%;
     transform: translateX(50%);
   }

   .footer-links-col ul li a {
     justify-content: center;
   }

   .social-grid {
     justify-content: center;
     display: flex;
     flex-wrap: wrap;
   }

   .footer-bottom {
     flex-direction: column;
     text-align: center;
   }
 }

 /* ─── WHATSAPP FLOAT ─── */
 .whatsapp-btn {
   position: fixed;
   bottom: 88px;
   right: 24px;
   z-index: 200;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: #25D366;
   color: var(--white);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 30px;
   text-decoration: none;
   box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
   animation: wa-pulse 2s infinite, wa-float 3s ease-in-out infinite;
   transition: var(--transition);
 }

 .whatsapp-btn:hover {
   background: #128C7E;
   transform: scale(1.1) rotate(15deg);
 }

 @keyframes wa-pulse {
   0% {
     box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
   }

   70% {
     box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
   }

   100% {
     box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
   }
 }

 @keyframes wa-float {

   0%,
   100% {
     transform: translateY(0);
   }

   50% {
     transform: translateY(-10px);
   }
 }

 /* ─── SCROLL TO TOP ─── */
 .scroll-top {
   position: fixed;
   bottom: 24px;
   left: 24px;
   z-index: 200;
   width: 46px;
   height: 46px;
   border-radius: 10px;
   background: var(--secondary);
   color: var(--white);
   border: none;
   cursor: pointer;
   font-size: 18px;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   visibility: hidden;
   transition: var(--transition);
   box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4);
 }

 .scroll-top.show {
   opacity: 1;
   visibility: visible;
 }

 .scroll-top:hover {
   transform: translateY(-3px);
 }

 /* ─── RESPONSIVE OVERHAUL ─── */
 @media (max-width: 1200px) {
   .container {
     padding: 0 24px;
   }

   .hero-content h1 {
     font-size: 50px;
   }
 }

 @media (max-width: 992px) {
   .top-bar-left {
     display: none;
   }

   .header-actions .btn-buy,
   .header-actions .btn-rent {
     display: none;
   }

   /* Hide on tablet, use mobile nav */
   .hero-content h1 {
     font-size: 42px;
   }

   .hero-content p {
     font-size: 18px;
   }

   .footer-grid {
     grid-template-columns: 1fr 1fr;
     gap: 40px;
   }

   .why-grid {
     grid-template-columns: 1fr 1fr;
   }
 }

 @media (max-width: 768px) {
   nav {
     display: none;
   }

   .hamburger {
     display: flex;
   }

   .top-bar {
     display: none;
   }

   .hero {
     height: 55vh;
     min-height: 480px;
   }

   .hero-slide-bg {
     background-position: center bottom;
   }

   .hero-content {
     text-align: center;
     padding-top: 40px;
   }

   .hero-content h1 {
     font-size: 32px;
     margin-bottom: 15px;
   }

   .hero-content p {
     font-size: 15px;
     margin-bottom: 25px;
   }

   .hero-slide::after {
     height: 100px;
   }

   .hero-actions {
     flex-direction: column;
     width: 100%;
     gap: 12px;
   }

   .btn-hero {
     width: 100%;
     justify-content: center;
   }

   .section-heading {
     text-align: center;
     width: 100%;
   }

   .section-title {
     font-size: 28px;
   }

   .cars-header {
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 20px;
   }

   .services-grid {
     grid-template-columns: 1fr;
   }

   .status-cards {
     grid-template-columns: 1fr;
     gap: 15px;
   }

   .filter-grid {
     grid-template-columns: 1fr;
   }

   .brands-grid {
     grid-template-columns: repeat(3, 1fr);
     gap: 15px;
   }

   .partners-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .why-grid {
     grid-template-columns: 1fr;
   }

   .footer-grid {
     grid-template-columns: 1fr;
     text-align: center;
   }

   .footer-brand-col {
     align-items: center;
   }

   .social-box {
     align-items: center;
   }

   .social-grid {
     justify-content: center;
   }

   /* Swiper adjustments via JS usually, but visual fixes here */
   .car-card-img {
     height: 180px;
   }
 }

 @media (max-width: 480px) {
   .brands-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .partner-card {
     padding: 15px;
     height: 80px;
   }

   .section-title {
     font-size: 24px;
   }

   .brand-card {
     padding: 20px 10px;
   }

   .brand-logo-wrap {
     height: 40px;
   }

   .brand-card span {
     font-size: 13px;
   }

   .logo .logo-text .brand {
     font-size: 18px;
   }

   .logo .logo-text .sub {
     font-size: 10px;
   }

   .logo-icon {
     width: 36px;
     height: 36px;
     margin-left: 8px !important;
   }

   .logo-icon svg {
     width: 24px;
     height: 24px;
   }
 }


 /* ─── BRANDS SLIDER SECTION ─── */
 .brands-slider-section {
   padding: 100px 0;
   background: var(--off-white);
   position: relative;
 }

 .brands-wrapper {
   position: relative;
   padding: 0 60px;
 }

 .brand-card {
   background: var(--white);
   border: 1px solid rgba(241, 101, 34, 0.2);
   border-radius: 12px;
   padding: 15px 10px;
   height: 110px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 10px;
   transition: all 0.3s ease;
   text-decoration: none;
 }

 .brand-card:hover {
   transform: translateY(-8px);
   border-color: var(--secondary);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
   z-index: 2;
 }

 .brand-logo-wrap {
   width: 70px;
   height: 45px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .brand-logo-wrap img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
   transition: 0.4s;
 }

 .brand-card:hover .brand-logo-wrap img {
   transform: scale(1.1);
 }

 .brand-name {
   font-size: 13px;
   font-weight: 700;
   color: var(--primary);
   transition: 0.3s;
 }

 .brand-card:hover .brand-name {
   color: var(--secondary);
 }

 /* Slider Nav Logic */
 .brands-swiper {
   padding: 15px 0 40px;
   margin-top: -15px;
   height: auto;
   overflow: hidden;
 }

 .brands-swiper .swiper-slide {
   height: auto !important;
   display: flex;
   flex-direction: column;
 }

 .brands-nav-btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 50px;
   height: 50px;
   background: var(--primary);
   /* Brand Navy */
   color: white;
   border: none;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   z-index: 10;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   box-shadow: 0 4px 12px rgba(29, 64, 119, 0.3);
 }

 .brands-nav-btn:hover {
   background: var(--primary-dark);
   transform: translateY(-50%) scale(1.1);
   box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
 }

 .brands-nav-btn.prev {
   right: -20px;
 }

 .brands-nav-btn.next {
   left: -20px;
 }

 .brands-nav-btn.swiper-button-disabled {
   opacity: 0.3;
   cursor: not-allowed;
 }

 .brands-pagination {
   margin-top: 40px;
   display: flex;
   justify-content: center;
   gap: 12px;
 }

 .brands-pagination .swiper-pagination-bullet {
   width: 10px;
   height: 10px;
   background: #cbd5e1 !important;
   opacity: 1 !important;
   margin: 0 !important;
   transition: 0.3s;
 }

 .brands-pagination .swiper-pagination-bullet-active {
   background: var(--primary) !important;
   transform: scale(1.2);
 }

 @media (max-width: 992px) {
   .brands-wrapper {
     padding: 0 40px;
   }

   .brand-card {
     height: 160px;
     padding: 20px 10px;
   }
 }

 @media (max-width: 768px) {
   .brands-wrapper {
     padding: 0;
   }

   .brands-nav-btn {
     display: none;
   }

   .brands-slider-section {
     padding: 60px 0;
   }
 }

 /* ─── PARTNERS SECTION ─── */
 .partners-section {
   background: var(--off-white);
   padding: 80px 0;
   border-top: 1px solid var(--light-gray);
 }

 .partners-grid {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: 20px;
 }

 .partner-card {
   background: var(--white);
   border-radius: 12px;
   padding: 15px;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
   transition: var(--transition);
   border: 1px solid var(--light-gray);
   height: 110px;
 }

 .partner-card:hover {
   transform: scale(1.05);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
   border-color: var(--secondary);
 }

 .partner-card img {
   max-height: 85%;
   max-width: 90%;
   object-fit: contain;
 }

 @media (max-width: 1200px) {
   .partners-grid {
     grid-template-columns: repeat(4, 1fr);
   }
 }

 @media (max-width: 992px) {
   .partners-grid {
     grid-template-columns: repeat(3, 1fr);
   }
 }

 @media (max-width: 768px) {
   .partners-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 /* ─── STATUS & FILTER ─── */
 .filter-section {
   padding: 40px 0;
   background: var(--off-white);
 }

 .status-cards {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px;
   margin-bottom: 30px;
 }

 .status-card {
   background: var(--white);
   border-radius: 16px;
   padding: 30px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 16px;
   text-decoration: none;
   transition: var(--transition);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   border: 1px solid var(--light-gray);
   text-align: center;
 }

 .status-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
   border-color: var(--secondary);
 }

 .status-card i {
   font-size: 42px;
   color: var(--secondary);
 }

 .status-card h3 {
   font-size: 24px;
   font-weight: 800;
   color: var(--primary);
   margin: 0;
 }

 .status-card p {
   font-size: 14px;
   color: var(--text-light);
   margin: 0;
 }

 .search-filter-box {
   background: var(--white);
   padding: 30px;
   border-radius: 20px;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
   border: 1px solid var(--light-gray);
 }

 .filter-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   gap: 15px;
   align-items: flex-end;
 }

 .filter-item {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }

 .filter-item label {
   font-size: 13px;
   font-weight: 700;
   color: var(--primary);
   padding-right: 4px;
 }

 .filter-item select,
 .filter-item input {
   width: 100%;
   height: 48px;
   border: 1px solid var(--light-gray);
   border-radius: 10px;
   padding: 0 16px;
   background: var(--off-white);
   color: var(--text);
   font-family: inherit;
   font-size: 14px;
   outline: none;
   transition: var(--transition);
 }

 .filter-item select:focus {
   border-color: var(--secondary);
   background: var(--white);
 }

 .btn-search-filter {
   height: 48px;
   background: var(--primary);
   color: var(--white);
   border: none;
   border-radius: 10px;
   font-weight: 800;
   font-size: 16px;
   cursor: pointer;
   transition: var(--transition);
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
 }

 .btn-search-filter:hover {
   background: var(--primary-dark);
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(10, 25, 47, 0.3);
 }

 @media (max-width: 768px) {
   .status-cards {
     grid-template-columns: 1fr;
   }

   .filter-grid {
     grid-template-columns: 1fr 1fr;
   }

   .cars-header {
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 25px;
   }

   .cars-nav {
     justify-content: center;
     width: 100%;
   }
 }

 @media (max-width: 480px) {
   .filter-grid {
     grid-template-columns: 1fr;
   }
 }

 .cars-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   margin-bottom: 40px;
 }

 .section-tag {
   background: rgba(200, 16, 46, 0.1);
   color: var(--secondary);
   padding: 6px 16px;
   border-radius: 30px;
   font-weight: 800;
   font-size: 13px;
   text-transform: uppercase;
   letter-spacing: 1px;
   display: inline-block;
   margin-bottom: 12px;
 }

 .section-title {
   font-size: 36px;
   font-weight: 900;
   color: var(--primary);
   line-height: 1.2;
   margin: 0;
 }

 .section-title .red {
   color: var(--secondary);
 }

 .cars-nav {
   display: flex;
   gap: 12px;
 }

 .cars-nav-btn {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   border: 2px solid var(--light-gray);
   background: var(--white);
   color: var(--primary);
   cursor: pointer;
   transition: var(--transition);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
 }

 .cars-nav-btn:hover {
   border-color: var(--secondary);
   background: var(--secondary);
   color: var(--white);
   transform: scale(1.05);
 }

 .car-card {
   background: var(--white);
   border-radius: 20px;
   overflow: hidden;
   border: 1px solid var(--light-gray);
   transition: var(--transition);
   height: 100%;
   display: flex;
   flex-direction: column;
 }

 .car-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   border-color: var(--secondary);
 }

 .car-card-img {
   position: relative;
   height: 300px;
   overflow: hidden;
 }

 .car-card-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .car-card:hover .car-card-img img {
   transform: none;
 }

 .car-badge {
   position: absolute;
   top: 15px;
   right: 15px;
   padding: 5px 12px;
   border-radius: 8px;
   font-size: 12px;
   font-weight: 800;
   color: var(--white);
   z-index: 2;
 }

 .badge-new {
   background: var(--secondary);
 }

 .badge-used {
   background: var(--primary);
 }

 .fav-btn {
   position: absolute;
   top: 15px;
   left: 15px;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.9);
   border: none;
   color: var(--text-light);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 2;
   transition: var(--transition);
 }

 .fav-btn:hover {
   color: var(--secondary);
   background: var(--white);
 }

 .fav-btn.active {
   color: var(--secondary);
 }

 .car-card-body {
   padding: 24px;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
 }

 .car-title {
   font-size: 20px;
   font-weight: 800;
   color: var(--primary);
   margin-bottom: 5px;
 }

 .car-year {
   font-size: 14px;
   color: var(--text-light);
   margin-bottom: 20px;
   font-weight: 600;
 }

 .car-price-box {
   margin-bottom: 20px;
 }

 .price-before {
   font-size: 24px;
   font-weight: 900;
   color: var(--secondary);
   display: block;
   line-height: 1;
 }

 .price-before span {
   font-size: 14px;
   font-weight: 700;
   margin-right: 4px;
 }

 .price-after {
   font-size: 13px;
   color: var(--text-light);
   font-weight: 600;
   margin-top: 4px;
   display: block;
 }

 .car-specs-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 12px;
   border-top: 1px solid var(--light-gray);
   padding-top: 20px;
   margin-top: auto;
 }

 .car-spec-item {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 13px;
   color: var(--text);
   font-weight: 600;
 }

 .car-spec-item i {
   width: 18px;
   color: var(--secondary);
   font-size: 14px;
   text-align: center;
 }

 .more-btn-wrap {
   text-align: center;
   margin-top: 50px;
 }

 .btn-more {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   padding: 16px 40px;
   background: var(--primary);
   color: var(--white);
   border-radius: 12px;
   font-weight: 800;
   text-decoration: none;
   transition: var(--transition);
 }

 .btn-more:hover {
   background: var(--secondary);
   transform: translateY(-3px);
   box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
 }

 .modal-overlay {
   position: fixed;
   inset: 0;
   background: rgba(17, 29, 51, 0.85);
   -webkit-backdrop-filter: blur(8px);
   backdrop-filter: blur(8px);
   z-index: 1000;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   visibility: hidden;
   transition: var(--transition);
   padding: 20px;
 }

 .modal-overlay.open {
   opacity: 1;
   visibility: visible;
 }

 .modal-card {
   background: var(--white);
   width: 100%;
   max-width: 500px;
   border-radius: 20px;
   overflow: hidden;
   position: relative;
   transform: scale(0.9);
   transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
 }

 .modal-overlay.open .modal-card {
   transform: scale(1);
 }

 .modal-header {
   background: var(--primary);
   padding: 24px;
   color: var(--white);
   text-align: center;
   position: relative;
 }

 .modal-header h3 {
   font-size: 20px;
   font-weight: 800;
 }

 .modal-header p {
   font-size: 13px;
   color: rgba(255, 255, 255, 0.6);
   margin-top: 4px;
 }

 #modalIcon {
   width: 50px;
   height: 50px;
   background: var(--secondary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   margin: 0 auto 12px;
 }

 .modal-close {
   position: absolute;
   top: 18px;
   left: 18px;
   background: rgba(255, 255, 255, 0.1);
   border: none;
   color: var(--white);
   width: 32px;
   height: 32px;
   border-radius: 50%;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
 }

 .modal-close:hover {
   background: var(--secondary);
 }

 .modal-body {
   padding: 30px;
 }

 .form-row {
   margin-bottom: 20px;
 }

 .form-row label {
   display: block;
   font-size: 13px;
   font-weight: 700;
   color: var(--primary);
   margin-bottom: 8px;
 }

 .form-input {
   width: 100%;
   padding: 12px 16px;
   background: var(--off-white);
   border: 1px solid var(--light-gray);
   border-radius: 10px;
   font-family: 'Cairo', sans-serif;
   font-size: 14px;
   transition: var(--transition);
 }

 .form-input:focus {
   border-color: var(--secondary);
   outline: none;
   background: var(--white);
   box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.05);
 }

 .btn-submit {
   width: 100%;
   padding: 14px;
   background: var(--primary);
   color: var(--white);
   border: none;
   border-radius: 10px;
   font-family: 'Cairo', sans-serif;
   font-size: 16px;
   font-weight: 800;
   cursor: pointer;
   transition: var(--transition);
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
 }

 .btn-submit:hover {
   background: var(--primary-dark);
   transform: translateY(-2px);
 }

 /* Reveal animations */
 .reveal {
   opacity: 0;
   transform: translateY(24px);
   transition: opacity 0.65s ease, transform 0.65s ease;
 }

 .reveal.visible {
   opacity: 1;
   transform: translateY(0);
 }

 /* ─── FLOATING HERO BOX ─── */
 .hero-container {
   position: relative;
 }

 .floating-box {
   background: var(--white);
   border-radius: 24px;
   padding: 40px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
   margin-top: -120px;
   position: relative;
   z-index: 20;
 }

 .floating-search-bar {
   margin-bottom: 30px;
   position: relative;
   display: flex;
   gap: 10px;
 }

 .search-input-wrap {
   position: relative;
   flex-grow: 1;
 }

 .search-input-wrap i {
   position: absolute;
   right: 20px;
   top: 50%;
   transform: translateY(-50%);
   color: var(--text-light);
   pointer-events: none;
 }

 .floating-search-bar input {
   width: 100%;
   height: 55px;
   background: var(--off-white);
   border: 1px solid rgba(241, 101, 34, 0.2);
   border-radius: 12px;
   padding: 0 50px 0 20px;
   font-size: 15px;
   font-family: inherit;
   outline: none;
   transition: var(--transition);
 }

 .floating-search-bar input:focus {
   border-color: var(--secondary);
   background: var(--white);
   box-shadow: 0 0 0 4px rgba(241, 101, 34, 0.1);
 }

 .btn-main-search,
 .btn-advanced-filter {
   height: 55px;
   padding: 0 25px;
   border-radius: 12px;
   border: none;
   font-weight: 800;
   cursor: pointer;
   transition: var(--transition);
   display: flex;
   align-items: center;
   gap: 8px;
   white-space: nowrap;
 }

 .btn-main-search {
   background: var(--primary);
   color: white;
 }

 .btn-main-search:hover {
   background: var(--primary-dark);
   transform: translateY(-2px);
 }

 .btn-advanced-filter {
   background: var(--secondary);
   color: white;
   border: none;
 }

 .btn-advanced-filter:hover {
   background: #d9531a;
   transform: translateY(-2px);
   box-shadow: 0 4px 15px rgba(241, 101, 34, 0.3);
 }

 @media (max-width: 640px) {
   .floating-search-bar {
     flex-direction: column;
   }

   .btn-main-search,
   .btn-advanced-filter {
     width: 100%;
     justify-content: center;
     height: 50px;
   }

   .floating-search-bar input {
     height: 50px;
   }
 }

 .status-cards-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   margin-bottom: 40px;
 }

 .mini-status-card {
   background: var(--white);
   border: 1px solid rgba(241, 101, 34, 0.2);
   border-radius: 16px;
   padding: 24px 15px;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   gap: 12px;
   text-decoration: none;
   cursor: pointer;
   font-family: inherit;
   transition: var(--transition);
 }

 .mini-status-card:hover {
   border-color: var(--secondary);
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
 }

 .mini-status-card i {
   font-size: 28px;
   color: var(--primary);
   background: rgba(29, 64, 119, 0.05);
   width: 54px;
   height: 54px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 12px;
   transition: var(--transition);
 }

 .mini-status-card:hover i {
   background: var(--secondary);
   color: var(--white);
 }

 .mini-status-card h3 {
   font-size: 16px;
   font-weight: 800;
   color: var(--primary);
 }

 .mini-status-card p {
   font-size: 12px;
   color: var(--gray);
 }

 /* Finance Calculator Modal */
 .calc-modal-overlay {
   position: fixed;
   inset: 0;
   background: rgba(15, 25, 50, 0.55);
   backdrop-filter: blur(4px);
   z-index: 9999;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.3s;
 }

 .calc-modal-overlay.open {
   opacity: 1;
   pointer-events: all;
 }

 .calc-modal {
   background: var(--white);
   border-radius: 24px;
   width: 100%;
   max-width: 460px;
   transform: translateY(30px) scale(0.97);
   transition: transform 0.3s cubic-bezier(.34, 1.4, .64, 1);
   overflow: hidden;
   box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
 }

 .calc-modal-overlay.open .calc-modal {
   transform: translateY(0) scale(1);
 }

 .calc-modal-head {
   background: linear-gradient(135deg, var(--primary) 0%, #2a5298 100%);
   padding: 22px 24px 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   direction: rtl;
 }

 .calc-modal-head-title {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .calc-modal-head-title .calc-icon-wrap {
   width: 42px;
   height: 42px;
   background: rgba(255, 255, 255, 0.15);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   color: #fff;
 }

 .calc-modal-head-title h4 {
   margin: 0;
   font-size: 18px;
   font-weight: 800;
   color: #fff;
 }

 .calc-modal-head-title p {
   margin: 2px 0 0;
   font-size: 12px;
   color: rgba(255, 255, 255, 0.7);
 }

 .calc-modal-close {
   width: 34px;
   height: 34px;
   background: rgba(255, 255, 255, 0.15);
   border: none;
   border-radius: 10px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 14px;
   transition: background 0.2s;
   flex-shrink: 0;
 }

 .calc-modal-close:hover {
   background: rgba(255, 255, 255, 0.25);
 }

 .calc-modal-body {
   padding: 24px;
   direction: rtl;
 }

 .finance-calc-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 16px;
   margin-bottom: 20px;
   box-sizing: border-box;
   width: 100%;
 }

 .calc-field label {
   display: block;
   font-size: 12px;
   font-weight: 700;
   color: #6b7a99;
   margin-bottom: 8px;
   text-transform: uppercase;
   letter-spacing: 0.3px;
 }

 .calc-input-wrap {
   display: flex;
   align-items: stretch;
   border: 1.5px solid #e8edf5;
   border-radius: 12px;
   overflow: hidden;
   transition: border-color 0.2s, box-shadow 0.2s;
   background: #f8fafc;
 }

 .calc-input-wrap:focus-within {
   border-color: var(--secondary);
   box-shadow: 0 0 0 3px rgba(241, 101, 34, 0.1);
   background: #fff;
 }

 .calc-input-wrap input {
   flex: 1;
   border: none;
   outline: none;
   padding: 12px 14px;
   font-size: 15px;
   font-weight: 700;
   color: var(--primary);
   background: transparent;
   text-align: left;
   direction: ltr;
   min-width: 0;
 }

 .calc-input-wrap input::placeholder {
   color: #bcc5d6;
   font-weight: 500;
 }

 .calc-input-wrap .unit-badge {
   padding: 0 12px;
   font-size: 12px;
   font-weight: 800;
   color: var(--secondary);
   background: rgba(241, 101, 34, 0.07);
   border-left: 1.5px solid #e8edf5;
   display: flex;
   align-items: center;
   white-space: nowrap;
   flex-shrink: 0;
 }

 .calc-input-wrap:focus-within .unit-badge {
   border-left-color: rgba(241, 101, 34, 0.2);
 }

 .calc-btn {
   width: 100%;
   padding: 14px;
   background: linear-gradient(135deg, var(--secondary) 0%, #c94a10 100%);
   color: #fff;
   border: none;
   border-radius: 14px;
   font-size: 15px;
   font-weight: 800;
   cursor: pointer;
   transition: transform 0.15s, box-shadow 0.15s;
   box-shadow: 0 6px 20px rgba(241, 101, 34, 0.35);
   letter-spacing: 0.3px;
 }

 .calc-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 28px rgba(241, 101, 34, 0.4);
 }

 .calc-btn:active {
   transform: translateY(0);
 }

 .calc-result {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 10px;
   margin-top: 18px;
 }

 .calc-result.hidden {
   display: none;
 }

 .calc-result-item {
   border-radius: 14px;
   padding: 14px 10px;
   text-align: center;
   background: #f4f7fc;
 }

 .calc-result-item:first-child {
   background: linear-gradient(135deg, var(--primary), #2a5298);
   grid-column: span 3;
   padding: 18px 10px;
   border-radius: 16px;
 }

 .calc-result-item:first-child span {
   color: rgba(255, 255, 255, 0.75);
   font-size: 12px;
 }

 .calc-result-item:first-child strong {
   color: #fff;
   font-size: 22px;
 }

 .calc-result-item span {
   display: block;
   font-size: 10px;
   color: #8898aa;
   margin-bottom: 5px;
   font-weight: 600;
 }

 .calc-result-item strong {
   font-size: 13px;
   color: var(--primary);
   font-weight: 900;
 }

 @media (max-width: 640px) {
   .finance-calc-grid {
     grid-template-columns: 1fr;
     gap: 12px;
   }

   .calc-result {
     grid-template-columns: repeat(2, 1fr);
   }

   .calc-result-item:first-child {
     grid-column: span 2;
   }

   .calc-modal-body {
     padding: 18px 16px;
   }
 }

 .brands-mini-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 15px;
   padding-top: 30px;
   border-top: 1px solid var(--light-gray);
 }

 .brand-mini-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 5px;
   text-decoration: none;
   transition: var(--transition);
   opacity: 0.6;
 }

 .brand-mini-item:hover {
   opacity: 1;
   transform: scale(1.1);
 }

 .brand-mini-item img {
   width: 34px;
   height: 34px;
   object-fit: contain;
 }

 .brand-mini-item span {
   font-size: 11px;
   font-weight: 700;
   color: var(--primary);
 }

 .view-all-brands {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   margin: 30px auto 0;
   padding: 12px 30px;
   background: var(--primary);
   color: var(--white);
   border-radius: 50px;
   font-size: 14px;
   font-weight: 800;
   text-decoration: none;
   transition: var(--transition);
   box-shadow: 0 4px 15px rgba(29, 64, 119, 0.2);
 }

 .view-all-brands:hover {
   background: var(--secondary);
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(241, 101, 34, 0.3);
 }

 .view-all-brands-wrap {
   text-align: center;
   width: 100%;
 }

 @media (max-width: 992px) {
   .status-cards-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 640px) {
   .header-inner {
     padding: 10px 15px;
   }

   .logo {
     gap: 6px;
   }

   .logo-icon img {
     height: 35px !important;
   }

   .brand {
     font-size: 18px !important;
   }

   .floating-box {
     padding: 15px 12px;
     margin-top: -60px;
   }

   .status-cards-grid {
     gap: 10px;
     margin-bottom: 20px;
   }

   .mini-status-card {
     padding: 12px 15px;
     flex-direction: row;
     text-align: right;
     justify-content: flex-start;
     gap: 15px;
     border-radius: 12px;
   }

   .mini-status-card i {
     font-size: 20px;
   }

   .mini-status-card h3 {
     font-size: 15px;
   }

   .mini-status-card p {
     font-size: 11px;
   }

   .brands-swiper {
     padding-bottom: 30px;
   }

   .view-all-brands {
     padding: 10px 20px;
     font-size: 12px;
     margin-top: 15px;
   }
 }

 /* ─── MODAL SYSTEM (PREMIUM) ─── */
 .modal-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(15, 23, 42, 0.4);
   backdrop-filter: blur(8px);
   /* Premium Glass Effect */
   display: flex;
   align-items: flex-start;
   justify-content: center;
   z-index: 2000;
   opacity: 0;
   visibility: hidden;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   padding: 40px 20px;
   overflow-y: auto;
 }

 .modal-overlay.open {
   opacity: 1;
   visibility: visible;
 }

 .modal-card {
   background: var(--white);
   width: 100%;
   max-width: 650px;
   border-radius: 30px;
   position: relative;
   overflow: hidden;
   box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
   transform: translateY(40px) scale(0.95);
   transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
   margin: 0 auto;
 }

 .modal-overlay.open .modal-card {
   transform: translateY(0) scale(1);
 }

 .modal-close {
   position: absolute;
   top: 20px;
   left: 20px;
   width: 36px;
   height: 36px;
   background: rgba(255, 255, 255, 0.2);
   border: none;
   border-radius: 50%;
   color: white;
   font-size: 20px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: 0.3s;
   z-index: 10;
 }

 .modal-close:hover {
   background: var(--secondary);
   transform: rotate(90deg);
 }

 .modal-premium-header {
   background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
   padding: 50px 40px;
   text-align: center;
   color: white;
   position: relative;
 }

 .modal-premium-header::after {
   content: '';
   position: absolute;
   bottom: -20px;
   left: 0;
   width: 100%;
   height: 40px;
   background: var(--white);
   border-radius: 50% 50% 0 0;
 }

 .modal-header-icon {
   width: 64px;
   height: 64px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
   font-size: 28px;
   color: var(--secondary);
   border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .modal-premium-header h3 {
   font-size: 28px;
   font-weight: 900;
   margin-bottom: 10px;
 }

 .modal-premium-header p {
   font-size: 15px;
   color: rgba(255, 255, 255, 0.7);
 }

 .modal-body {
   padding: 40px;
 }

 .premium-filter-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px;
 }

 .p-filter-item {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .p-filter-label {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 14px;
   font-weight: 800;
   color: var(--primary);
 }

 .p-filter-label i {
   color: var(--secondary);
   font-size: 16px;
 }

 .p-filter-select {
   width: 100%;
   height: 52px;
   border-radius: 14px;
   border: 1.5px solid #edf2f7;
   background: #f8fafc;
   padding: 0 15px;
   font-family: inherit;
   font-size: 14px;
   outline: none;
   transition: all 0.3s;
   color: var(--text);
 }

 .p-filter-select:focus {
   border-color: var(--secondary);
   background: white;
   box-shadow: 0 4px 15px rgba(241, 101, 34, 0.1);
 }

 /* ─── GLOBAL UTILITIES ─── */
 .text-linear-3 {
   background: linear-gradient(236deg, #22d1ee 0%, #c5ff41 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   display: inline-block;
   font-weight: 900;
 }

 .footer-sidebar-area .widget-title,
 .footer-sidebar-area h4,
 .footer-sidebar-area h5 {
   font-size: 24px;
   font-weight: 900;
   margin-bottom: 35px;
   color: #fff !important;
   position: relative;
   padding-bottom: 15px;
   letter-spacing: -0.5px;
   line-height: 1.2;
 }

 .footer-sidebar-area .widget-title::after,
 .footer-sidebar-area h4::after,
 .footer-sidebar-area h5::after {
   content: '';
   position: absolute;
   bottom: 0;
   right: 0;
   width: 45px;
   height: 4px;
   background: #F16522 !important;
   border-radius: 10px;
   box-shadow: 0 2px 10px rgba(241, 101, 34, 0.4);
 }

 [dir="ltr"] .footer-sidebar-area .widget-title::after,
 [dir="ltr"] .footer-sidebar-area h4::after,
 [dir="ltr"] .footer-sidebar-area h5::after {
   right: auto;
   left: 0;
 }

 .footer-sidebar-area ul {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .footer-sidebar-area ul li {
   margin-bottom: 14px;
 }

 .footer-sidebar-area ul li a {
   color: rgba(255, 255, 255, 0.6) !important;
   text-decoration: none;
   font-size: 16px;
   transition: 0.3s;
   font-weight: 600;
   display: flex;
   align-items: center;
   gap: 8px;
 }

 .footer-sidebar-area ul li a:hover {
   color: var(--bs-brand-2) !important;
   padding-right: 5px;
 }

 .footer-sidebar-area p,
 .footer-sidebar-area span {
   color: rgba(255, 255, 255, 0.6) !important;
 }

 /* ── Footer: Social widget (box-socials-footer / icon-socials) ── */
 footer .box-socials-footer {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 12px;
   width: 100%;
 }

 footer .icon-socials {
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 10px;
   display: flex !important;
   align-items: center;
   justify-content: center;
   color: #fff !important;
   font-size: 17px;
   transition: 0.3s;
   border: 1px solid rgba(255, 255, 255, 0.1);
   text-decoration: none;
 }

 footer .icon-socials:hover {
   background: var(--bs-brand-2);
   border-color: var(--bs-brand-2);
   transform: translateY(-5px);
   box-shadow: 0 8px 15px rgba(200, 16, 46, 0.3);
   color: var(--bs-button-text, #000) !important;
 }

 footer .icon-socials svg {
   width: 20px;
   height: 20px;
 }

 footer .box-socials-footer+p,
 footer p.text-lg-bold {
   font-size: 14px !important;
   color: #fff !important;
   font-weight: 700 !important;
   margin-bottom: 20px !important;
   text-align: center !important;
   display: block !important;
 }

 footer .col-md-3>.d-flex {
   display: flex !important;
   flex-direction: column !important;
   align-items: flex-start !important;
   gap: 0 !important;
 }

 /* Hide duplicate title from social widget (we have our own span) */
 footer .social-box .col-md-3>div>p.text-lg-bold,
 footer .social-box .col-md-3>div>p:first-child {
   display: none !important;
 }

 /* Fix col-md-3 wrapper inside social-box */
 footer .social-box .col-md-3 {
   width: 100% !important;
   padding: 0 !important;
 }

 footer .social-box .col-md-3>div {
   display: block !important;
   align-items: unset !important;
   justify-content: unset !important;
 }

 .footer-sidebar-area .widget-title,
 .footer-sidebar-area h4,
 .footer-sidebar-area h5 {
       font-family: 'Cairo', 'Tajawal', sans-serif !important;
   font-weight: 900 !important;
   color: #fff !important;
 }

 .footer-sidebar-area {
   margin-bottom: 40px;
 }

 .footer-links-col h4,
 footer h4,
 .footer-sidebar-area h4 {
   font-size: 22px !important;
   font-weight: 800 !important;
   margin-bottom: 30px !important;
   color: #fff !important;
   position: relative !important;
   padding-bottom: 12px !important;
      font-family: 'Cairo', 'Tajawal', sans-serif !important;
 }

 .footer-links-col h4::after,
 footer h4::after,
 .footer-sidebar-area h4::after {
   content: \u0027\u0027 !important;
   position: absolute !important;
   bottom: 0 !important;
   right: 0 !important;
   width: 40px !important;
   height: 3px !important;
   background: #F16522 !important;
   border-radius: 2px !important;
 }

 .scroll-top {
   position: fixed !important;
   bottom: 24px !important;
   left: 24px !important;
   z-index: 1000 !important;
   width: 46px !important;
   height: 46px !important;
   border-radius: 12px !important;
   background: #F16522 !important;
   color: #fff !important;
   border: none !important;
   cursor: pointer !important;
   font-size: 18px !important;
   display: none !important;
   align-items: center !important;
   justify-content: center !important;
   opacity: 0 !important;
   transition: all 0.3s ease !important;
   box-shadow: 0 4px 15px rgba(241, 101, 34, 0.4) !important;
 }

 .scroll-top:hover {
   transform: translateY(-5px) !important;
   background: #d9531a !important;
   box-shadow: 0 6px 20px rgba(241, 101, 34, 0.6) !important;
 }

 footer .widget-site-information img {
   height: 70px !important;
   width: auto !important;
   object-fit: contain !important;
   margin-bottom: 20px !important;
 }

 .footer-brand-col .widget-site-information {
   padding: 0 !important;
 }


 /* ============================================================ 
   CUSTOM AUTH STYLES (MoonTrip Premium)
============================================================ */
 .auth-section {
   padding: 80px 0 100px;
   background: #F9FAFB;
 }

 .auth-wrap {
   max-width: 520px;
   margin: 0 auto;
 }

 .auth-wrap.register {
   max-width: 600px;
 }

 .auth-card {
   background: #FFFFFF;
   border-radius: 24px;
   padding: 48px 44px;
   border: 1px solid #E2E8F0;
   box-shadow: 0 12px 50px rgba(0, 0, 0, 0.07);
   position: relative;
   overflow: hidden;
 }

 .auth-card::before {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   left: 0;
   height: 4px;
   background: linear-gradient(90deg, #1D4077, #F16522);
 }

 .auth-card.register::before {
   background: linear-gradient(90deg, #F16522, #1D4077);
 }

 .auth-header {
   text-align: center;
   margin-bottom: 36px;
 }

 .auth-icon {
   width: 72px;
   height: 72px;
   border-radius: 20px;
   background: linear-gradient(135deg, #1D4077, #2a58a3);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 30px;
   color: #FFFFFF;
   margin: 0 auto 20px;
   box-shadow: 0 8px 24px rgba(29, 64, 119, 0.25);
 }

 .auth-icon.register {
   background: linear-gradient(135deg, #F16522, #f58d56);
   box-shadow: 0 8px 24px rgba(241, 101, 34, 0.3);
 }

 .auth-header h2 {
   font-size: 26px;
   font-weight: 900;
   color: #1D4077;
   margin-bottom: 8px;
 }

 .auth-header p {
   font-size: 14px;
   color: #64748B;
 }

 .auth-form .form-row,
 .auth-form .row {
   margin-bottom: 20px;
 }

 .auth-form label {
   display: block;
   font-size: 12px;
   font-weight: 800;
   color: #1D4077;
   letter-spacing: 0.5px;
   margin-bottom: 8px;
   text-align: right;
   display: flex;
 }

 .input-wrap {
   position: relative;
 }

 .input-wrap .fi {
   position: absolute;
   top: 50%;
   right: 16px;
   transform: translateY(-50%);
   color: #64748B;
   font-size: 15px;
   pointer-events: none;
   transition: 0.3s;
 }

 .input-wrap .auth-input {
   width: 100%;
   padding: 13px 44px 13px 16px;
   background: #F9FAFB;
   border: 1.5px solid #E2E8F0;
   border-radius: 10px;
   font-family: 'Cairo', sans-serif;
   font-size: 14px;
   color: #1E293B;
   transition: 0.3s;
   outline: none;
   text-align: right;
 }

 .input-wrap .auth-input:focus {
   border-color: #F16522;
   background: #FFFFFF;
   box-shadow: 0 0 0 4px rgba(241, 101, 34, 0.06);
 }

 .input-wrap .auth-input:focus~.fi {
   color: #F16522;
 }

 .toggle-pass {
   position: absolute;
   top: 50%;
   left: 14px;
   transform: translateY(-50%);
   color: #64748B;
   font-size: 15px;
   cursor: pointer;
   pointer-events: all;
   transition: 0.3s;
 }

 .toggle-pass:hover {
   color: #F16522;
 }

 .form-options {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 26px;
 }

 .chk-wrap {
   display: flex;
   align-items: center;
   gap: 8px;
   cursor: pointer;
   user-select: none;
   font-size: 13px;
   color: #64748B;
   font-weight: 600;
 }

 .chk-wrap input,
 .terms-wrap input {
   display: none;
 }

 .chk-box {
   width: 18px;
   height: 18px;
   border-radius: 5px;
   border: 2px solid #E2E8F0;
   background: #F9FAFB;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition: 0.3s;
 }

 .chk-wrap input:checked+.chk-box,
 .terms-wrap input:checked+.chk-box {
   background: #1D4077;
   border-color: #1D4077;
 }

 .chk-wrap input:checked+.chk-box::after,
 .terms-wrap input:checked+.chk-box::after {
   content: '';
   width: 4px;
   height: 8px;
   border: 2px solid white;
   border-top: none;
   border-right: none;
   transform: rotate(-45deg) translate(1px, -1px);
   display: block;
 }

 .btn-auth {
   width: 100%;
   padding: 15px;
   background: linear-gradient(135deg, #1D4077, #2a58a3);
   color: #FFFFFF;
   border: none;
   border-radius: 12px;
   font-family: 'Cairo', sans-serif;
   font-size: 16px;
   font-weight: 800;
   cursor: pointer;
   transition: 0.3s;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   box-shadow: 0 6px 20px rgba(29, 64, 119, 0.3);
 }

 .btn-auth:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 30px rgba(29, 64, 119, 0.4);
 }

 .btn-auth.register {
   background: linear-gradient(135deg, #F16522, #f58d56);
   box-shadow: 0 6px 20px rgba(241, 101, 34, 0.3);
 }

 .btn-auth.register:hover {
   box-shadow: 0 10px 30px rgba(241, 101, 34, 0.4);
 }

 .auth-divider {
   display: flex;
   align-items: center;
   gap: 14px;
   margin: 28px 0;
 }

 .auth-divider::before,
 .auth-divider::after {
   content: '';
   flex: 1;
   height: 1px;
   background: #E2E8F0;
 }

 .auth-divider span {
   font-size: 12px;
   color: #64748B;
   font-weight: 700;
   white-space: nowrap;
 }

 .auth-footer-note {
   text-align: center;
   font-size: 14px;
   color: #64748B;
 }

 .auth-footer-note a {
   color: #F16522;
   font-weight: 800;
   text-decoration: none;
 }

 .auth-footer-note a:hover {
   color: #d4561a;
 }

 .link-muted {
   color: #F16522;
   text-decoration: none;
   font-size: 13px;
   font-weight: 700;
   transition: 0.3s;
 }

 .link-muted:hover {
   color: #d4561a;
 }

 .strength-bar {
   height: 4px;
   border-radius: 4px;
   background: #E2E8F0;
   margin-top: 8px;
   overflow: hidden;
 }

 .strength-fill {
   height: 100%;
   border-radius: 4px;
   transition: width 0.4s, background 0.4s;
   width: 0%;
 }

 .strength-label {
   font-size: 11px;
   font-weight: 700;
   margin-top: 4px;
   display: block;
   text-align: right;
 }

 .terms-wrap {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   margin-bottom: 26px;
 }

 .terms-wrap input {
   display: none;
 }

 .terms-label {
   font-size: 13px;
   color: #64748B;
   font-weight: 600;
   line-height: 1.7;
   cursor: pointer;
   text-align: right;
 }

 .terms-label a {
   color: #F16522;
   text-decoration: none;
   font-weight: 700;
 }


 /* ============================================================ 
   PAGE BANNER STYLES (MoonTrip Premium)
============================================================ */
 .page-banner {
   background: linear-gradient(135deg, #1D4077 0%, #2a58a3 60%, #1a3a6b 100%);
   padding: 60px 0 80px;
   position: relative;
   overflow: hidden;
   /* Full width trick to break out of container */
   width: 100vw;
   left: 50%;
   right: 50%;
   margin-left: -50vw;
   margin-right: -50vw;
 }

 .page-banner::before {
   content: '';
   position: absolute;
   inset: 0;
   background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
 }

 .page-banner::after {
   content: '';
   position: absolute;
   bottom: -2px;
   left: 0;
   right: 0;
   height: 60px;
   background: #F9FAFB;
   clip-path: ellipse(55% 100% at 50% 100%);
 }

 .banner-content {
   position: relative;
   z-index: 2;
   text-align: right;
   max-width: 1280px;
   /* Match standard container width */
   margin: 0 auto;
   padding: 0 24px;
 }

 /* Hide default theme breadcrumbs and page banners on auth pages */
 .customer-login-page .page-default-content>.breadcrumb,
 .customer-register-page .page-default-content>.breadcrumb,
 .customer-login-page .breadcrumb-area,
 .customer-register-page .breadcrumb-area,
 .customer-login-page .page-header,
 .customer-register-page .page-header,
 .customer-login-page .breadcrumb-section,
 .customer-register-page .breadcrumb-section {
   display: none !important;
 }

 .banner-content .breadcrumb {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 13px;
   color: rgba(255, 255, 255, 0.6);
   margin-bottom: 16px;
   background: transparent;
   padding: 0;
   justify-content: flex-start;
 }

 .banner-content .breadcrumb a {
   color: rgba(255, 255, 255, 0.6);
   text-decoration: none;
   transition: 0.3s;
 }

 .banner-content .breadcrumb a:hover {
   color: #F16522;
 }

 .banner-content .breadcrumb i {
   font-size: 10px;
   color: rgba(255, 255, 255, 0.3);
 }

 .banner-content .breadcrumb span {
   color: #F16522 !important;
   font-weight: 700;
 }

 .banner-tag {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(241, 101, 34, 0.15);
   border: 1px solid rgba(241, 101, 34, 0.3);
   color: #F16522;
   font-size: 12px;
   font-weight: 800;
   letter-spacing: 1px;
   padding: 6px 18px;
   border-radius: 20px;
   margin-bottom: 14px;
 }

 .page-banner h1 {
   font-size: clamp(28px, 4vw, 50px);
   font-weight: 900;
   color: #FFFFFF;
   line-height: 1.1;
   margin-bottom: 10px;
 }

 .page-banner h1 span {
   color: #F16522;
 }

 .banner-desc {
   font-size: 15px;
   color: rgba(255, 255, 255, 0.65);
   line-height: 1.8;
   max-width: 480px;
 }

 .top-bar-left {
   display: flex;
   align-items: center;
   gap: 20px;
 }

 .top-bar-contact {
   display: flex;
   align-items: center;
   gap: 25px;
 }

 .contact-item {
   display: flex;
   align-items: center;
   gap: 10px;
   color: #ffffff !important;
   font-size: 14px;
   text-decoration: none;
   transition: opacity 0.3s ease;
   white-space: nowrap;
 }

 .contact-item:hover {
   opacity: 0.8;
 }

 .contact-item i {
   color: var(--secondary);
   font-size: 16px;
 }

 [dir="rtl"] .contact-item {
   flex-direction: row;
 }

 .contact-item span {
   order: 1;
 }

 .contact-item i {
   order: 2;
 }

 /* Style sidebar widgets if they appear in header_top_sidebar */
 .top-bar-left .widget {
   margin-bottom: 0;
 }

 .top-bar-left .text-header-info,
 .top-bar-left .widget-contact-information {
   display: flex;
   align-items: center;
   gap: 20px;
   margin: 0;
 }

 .top-bar-left .widget-contact-information ul {
   display: flex;
   align-items: center;
   gap: 20px;
   list-style: none;
   margin: 0;
   padding: 0;
 }

 .top-bar-left .widget-contact-information ul li {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 /* --- BRANDS STYLE 3 PREMIUM REDESIGN --- */
 .brand-style-3 {
   padding: 80px 0;
   background: #f8fafc;
 }

 .brand-style-3 .shortcode-title {
   font-size: 32px;
   font-weight: 900;
   color: var(--primary);
   margin-bottom: 50px;
   position: relative;
   display: inline-block;
   text-align: center;
   width: 100%;
 }

 .brand-style-3 .shortcode-title::after {
   content: '';
   position: absolute;
   bottom: -12px;
   left: 50%;
   transform: translateX(-50%);
   width: 50px;
   height: 4px;
   background: var(--secondary);
   border-radius: 2px;
 }

 .brand-style-3 .brand-item {
   background: #ffffff;
   border: 1px solid rgba(226, 232, 240, 0.8);
   border-radius: 24px;
   padding: 35px 25px;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   height: 140px;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
   position: relative;
   overflow: hidden;
 }

 .brand-style-3 .brand-item::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(29, 64, 119, 0.03) 0%, rgba(241, 101, 34, 0.03) 100%);
   opacity: 0;
   transition: opacity 0.4s ease;
 }

 .brand-style-3 .brand-item img {
   max-height: 60px;
   max-width: 80%;
   width: auto;
   filter: grayscale(1);
   opacity: 0.5;
   transition: all 0.4s ease;
   position: relative;
   z-index: 1;
 }

 .brand-style-3 .col:hover .brand-item {
   border-color: var(--secondary);
   transform: translateY(-10px);
   box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
 }

 .brand-style-3 .col:hover .brand-item::before {
   opacity: 1;
 }

 .brand-style-3 .col:hover .brand-item img {
   filter: grayscale(0);
   opacity: 1;
   transform: scale(1.1);
 }

 .brand-style-3 h6 {
   margin-top: 20px;
   font-size: 16px;
   font-weight: 700;
   color: var(--primary);
   transition: all 0.3s ease;
 }

 .brand-style-3 h6 a {
   color: inherit;
   text-decoration: none;
 }

 .brand-style-3 .col:hover h6 {
   color: var(--secondary);
   transform: translateY(-5px);
 }


 /* FIX DOUBLE LOGO IN BRANDS */
 .brand-style-3 .dark-mode {
   display: none !important;
 }

 [data-bs-theme='dark'] .brand-style-3 .light-mode {
   display: none !important;
 }

 [data-bs-theme='dark'] .brand-style-3 .dark-mode {
   display: block !important;
 }

 .offcanvas-mobile {
   width: 320px !important;
   background: #ffffff !important;
   border-left: 1px solid rgba(0, 0, 0, 0.05);
   box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
 }

 .offcanvas-mobile__header {
   padding: 25px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-bottom: 1px solid #f1f5f9;
 }

 .offcanvas-mobile__logo img {
   height: 40px !important;
   width: auto !important;
 }

 .offcanvas-mobile__close {
   width: 40px;
   height: 40px;
   border-radius: 12px;
   background: #f8fafc;
   border: none;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--text);
   transition: all 0.3s ease;
   padding: 0;
 }

 .offcanvas-mobile__close:hover {
   background: #fee2e2;
   color: #ef4444;
 }

 .offcanvas-mobile__body {
   padding: 20px 0 !important;
   overflow-y: auto;
 }

 .offcanvas-mobile__accordion {
   border: none;
   margin-bottom: 5px;
 }

 .offcanvas-mobile__accordion-header {
   width: 100%;
   padding: 15px 25px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: transparent;
   border: none;
   color: var(--text);
   font-size: 16px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.3s ease;
   text-align: right;
 }

 .offcanvas-mobile__accordion-header:hover,
 .offcanvas-mobile__accordion-header:not(.collapsed) {
   background: #f8fafc;
   color: var(--primary);
 }

 .offcanvas-mobile__accordion-icon {
   transition: transform 0.3s ease;
   color: var(--gray);
 }

 .offcanvas-mobile__accordion-header:not(.collapsed) .offcanvas-mobile__accordion-icon {
   transform: rotate(45deg);
   color: var(--secondary);
 }

 .offcanvas-mobile__accordion-body {
   background: #fcfdfe;
   padding: 10px 0;
 }

 .offcanvas-mobile__link {
   display: block;
   padding: 12px 45px;
   color: var(--gray);
   font-size: 14px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
   text-align: right;
 }

 .offcanvas-mobile__link:hover {
   color: var(--secondary);
   padding-right: 50px;
 }

 .offcanvas-mobile__footer {
   padding: 20px 25px;
   border-top: 1px solid #f1f5f9;
   display: grid !important;
   grid-template-columns: 1fr 1fr !important;
   gap: 12px !important;
   background: #ffffff;
 }

 .offcanvas-mobile__footer-btn {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 15px;
   border-radius: 16px;
   text-decoration: none !important;
   font-size: 13px;
   font-weight: 700;
   transition: all 0.3s ease;
 }

 .offcanvas-mobile__footer-btn:first-child {
   background: var(--primary);
   color: #ffffff !important;
 }

 .offcanvas-mobile__footer-btn:last-child {
   background: var(--off-white);
   color: var(--primary) !important;
   border: 1px solid var(--light-gray);
 }

 .offcanvas-mobile__footer-btn:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
 }

 .offcanvas-mobile__footer-btn svg {
   margin: 0;
 }
 
 
/* Custom Discount Styles */
.discount-badge,
.offer-badge {
    position: absolute !important;
    top: 45px !important;
    right: 14px !important;
    background: #F16522 !important;
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(241, 101, 34, 0.3) !important;
    z-index: 5 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.price-original {
    font-size: 13px !important;
    color: #64748B !important;
    font-weight: 600 !important;
    margin-top: 4px !important;
    display: block !important;
}

.price-original .strike-price {
    text-decoration: line-through !important;
}

.save-tag {
    background: rgba(22, 163, 74, 0.1) !important;
    color: #16A34A !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin-top: 10px !important;
}