/* سيفن كارتك اكسبيرت - Car Inspection Theme
   Light Theme with Bootstrap 5 Integration
   =========================================== */

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
  /* Brand Colors */
  --brand: #cc511d;
  --brand-dark: #9d3e16;
  --brand-light: #e5662f;
  --brand-rgb: 204, 81, 29;

  /* Neutral */
  --neutral: #595b5d;

  /* Light Theme Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f0f2f5;

  /* Text Colors */
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-muted: #6c757d;

  /* Other */
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* ===========================================
   GLOBAL STYLES
   =========================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Cairo', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

/* Prevent horizontal overflow - CRITICAL */
html {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
}

/* Wrapper to contain all content */
main {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

section {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Images and media */
img,
video,
iframe,
embed,
object {
  max-width: 100% !important;
  height: auto;
}

/* Fix container overflow */
.container,
.container-fluid {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

/* Fix Bootstrap row negative margins */
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.row > * {
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

/* Mobile overflow fix - AGGRESSIVE */
@media (max-width: 991.98px) {
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100vw !important;
  }
  
  .container,
  .container-fluid {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important;
  }
  
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }
  
  section,
  main,
  footer,
  header,
  article,
  aside,
  nav {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }
  
  /* Disable horizontal transforms on mobile */
  .footer-links a:hover,
  .contact-info-item-light:hover,
  .quick-contact-item:hover {
    transform: none !important;
  }
}

/* RTL Support */
[dir="rtl"] .me-1 {
  margin-left: 0.25rem !important;
  margin-right: 0 !important;
}

[dir="rtl"] .me-2 {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}

[dir="rtl"] .me-3 {
  margin-left: 1rem !important;
  margin-right: 0 !important;
}

[dir="rtl"] .ms-1 {
  margin-right: 0.25rem !important;
  margin-left: 0 !important;
}

[dir="rtl"] .ms-2 {
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}

[dir="rtl"] .ms-3 {
  margin-right: 1rem !important;
  margin-left: 0 !important;
}

[dir="rtl"] .text-start {
  text-align: right !important;
}

[dir="rtl"] .text-end {
  text-align: left !important;
}

/* Text Color Utilities */
.text-brand {
  color: var(--brand) !important;
}

.bg-brand {
  background-color: var(--brand) !important;
}

/* ===========================================
   HEADER STYLES
   =========================================== */
.site-header {
  transition: var(--transition);
  z-index: 1050;
}

/* Transparent Header (on hero) */
.site-header {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

/* Navbar */
.site-header .navbar {
  padding: 0;
}

.site-header .header-logo {
  transition: var(--transition);
  height: 50px;
  width: auto;
}

/* Mobile logo size */
@media (max-width: 767.98px) {
  .site-header .header-logo {
    height: 38px;
  }
}

@media (max-width: 575.98px) {
  .site-header .header-logo {
    height: 35px;
  }
}

/* Nav Links */
.site-header .nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: var(--brand-light);
  background: rgba(255, 255, 255, 0.1);
}

.site-header .nav-link i {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Scrolled State - Dark Text */
.site-header.scrolled .nav-link {
  color: var(--text-primary);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link:focus {
  color: var(--brand);
  background: rgba(204, 81, 29, 0.08);
}

/* Header CTA Buttons */
.btn-booking-header {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff !important;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-booking-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 81, 29, 0.4);
  color: #fff !important;
}

.btn-call-header {
  background: var(--brand);
  color: #fff !important;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-call-header:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 81, 29, 0.4);
  color: #fff !important;
}

/* Mobile Toggler */
.navbar-toggler {
  padding: 0.5rem;
  border: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-header.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 26, 46, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Nav */
@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    background: #fff;
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .site-header .navbar-nav {
    width: 100%;
  }

  .site-header .nav-link {
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: right;
    direction: rtl;
  }

  .site-header .nav-link i {
    font-size: 1.1rem;
    color: var(--brand);
  }

  .site-header .nav-link:hover {
    color: var(--brand);
    background: rgba(204, 81, 29, 0.05);
  }

  .site-header .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .site-header .header-ctas {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-booking-header,
  .btn-call-header {
    width: 100%;
    justify-content: center;
  }

  .btn-booking-header span,
  .btn-call-header span {
    display: inline !important;
  }
}

/* Extra small devices - mobile menu */
@media (max-width: 575.98px) {
  .site-header .navbar-collapse {
    margin-top: 0.75rem;
    padding: 1rem;
    margin-left: 0;
    margin-right: 0;
    border-radius: var(--radius);
  }

  .site-header .nav-link {
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
  }

  .site-header .header-ctas {
    gap: 0.5rem;
  }

  .btn-booking-header,
  .btn-call-header {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

/* ===========================================
   HERO CAROUSEL SECTION
   =========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-section #heroCarousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section .carousel-inner,
.hero-section .carousel-item {
  height: 100vh;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 0.7;
  transition: var(--transition);
  z-index: 15;
  pointer-events: auto;
  cursor: pointer;
}

.hero-section .carousel-control-prev {
  left: 30px;
}

.hero-section .carousel-control-next {
  right: 30px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  opacity: 1;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  background-size: 40%;
  background-position: center;
}

/* Carousel Indicators */
.hero-section .carousel-indicators {
  bottom: 30px;
  z-index: 15;
  pointer-events: auto;
}

.hero-section .carousel-indicators button {
  pointer-events: auto;
  cursor: pointer;
}

.hero-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 6px;
  transition: var(--transition);
}

.hero-section .carousel-indicators button.active {
  background-color: var(--brand);
  transform: scale(1.2);
}

/* Hero Content Overlay */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  text-align: center;
  padding: 2rem;
  padding-top: 100px;
  pointer-events: none;
}

.hero-content a,
.hero-content button,
.hero-content .btn,
.hero-content .hero-cta-buttons {
  pointer-events: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 100svh;
  }

  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    height: 100svh;
  }

  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next {
    display: none;
  }

  .hero-section .carousel-indicators {
    bottom: 20px;
  }

  .hero-section .carousel-indicators button {
    width: 10px;
    height: 10px;
  }

  .hero-content {
    padding: 1rem;
    padding-top: 80px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-number {
    font-size: 1.75rem;
  }

  .hero-stat-label {
    font-size: 0.8rem;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .hero-buttons .btn span {
    white-space: nowrap;
  }
}

/* ===========================================
   SECTION STYLES
   =========================================== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(204, 81, 29, 0.1);
  border: 1px solid rgba(204, 81, 29, 0.2);
  border-radius: 50px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.85rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
}

.section-accent-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 100%);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ===========================================
   BENEFIT CARDS
   =========================================== */
.benefit-card {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(204, 81, 29, 0.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 10px 25px rgba(204, 81, 29, 0.3);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.benefit-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ===========================================
   SERVICE CARDS
   =========================================== */
.service-card {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
}

.service-card-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(204, 81, 29, 0.4);
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.service-card:hover .service-card-title {
  color: var(--brand);
}

.service-card-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-chip {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  background: rgba(204, 81, 29, 0.08);
  border: 1px solid rgba(204, 81, 29, 0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand);
}

.service-card-actions {
  margin-top: auto;
}

/* Service Cards Mobile Grid - 2x2 */
@media (max-width: 767.98px) {

  #servicesGrid .col-lg-4,
  #servicesGrid .col-md-6,
  .services-grid .col-lg-4,
  .services-grid .col-md-6,
  [class*="service"] .col-lg-4,
  [class*="service"] .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .service-card-image {
    height: 140px;
  }

  .service-card-body {
    padding: 1rem;
  }

  .service-card-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .service-card-description {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-chips {
    display: none;
  }

  .service-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .service-card .btn-whatsapp {
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
  }

  .service-card .btn-whatsapp span {
    display: none;
  }

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

/* ===========================================
   BUTTONS
   =========================================== */
.btn-brand {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(204, 81, 29, 0.3);
}

.btn-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(204, 81, 29, 0.4);
  color: #fff;
}

.btn-outline-brand {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-whatsapp i {
  font-size: 1.2rem;
}

/* Hero-specific Buttons */
.btn-hero-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-hero-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.btn-hero-whatsapp i {
  font-size: 1.25rem;
}

.btn-hero-call {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-hero-call:hover {
  background: #fff;
  color: var(--text-primary);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-hero-call i {
  font-size: 1.1rem;
}

@media (max-width: 767.98px) {

  .btn-hero-whatsapp,
  .btn-hero-call {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }
}

/* Light/White Buttons for dark backgrounds */
.btn-light-brand {
  background: #fff;
  color: var(--brand);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-light-brand:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--brand);
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::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.05'%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");
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

/* ===========================================
   FAQ ACCORDION
   =========================================== */
.faq-accordion .accordion-item {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  direction: rtl;
}

.faq-accordion .accordion-button {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  box-shadow: none;
  border: none;
  text-align: right;
  direction: rtl;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(204, 81, 29, 0.05);
  color: var(--brand);
}

.faq-accordion .accordion-button::after {
  position: absolute;
  right: 1.25rem;
  left: auto;
  margin-right: 0;
  margin-left: auto;
  transform: rotate(180deg);
  flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(7deg) brightness(97%) contrast(89%);
  transform: rotate(0deg);
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(204, 81, 29, 0.15);
}

.faq-accordion .accordion-body {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 1.25rem 1.5rem;
  text-align: right;
  direction: rtl;
  line-height: 1.8;
}

.faq-item {
  text-align: right;
  direction: rtl;
}

.faq-item .accordion-header {
  direction: rtl;
  text-align: right;
}

/* Accordion button span styling */
.faq-accordion .accordion-button span {
  flex: 1;
  text-align: right;
  direction: rtl;
  margin-left: auto;
}

/* Icon positioning in accordion button */
.faq-accordion .accordion-button .bi {
  margin-left: 0;
  margin-right: 0;
  flex-shrink: 0;
  order: 1;
  font-size: 1.15rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  direction: rtl;
  text-align: right;
}

.filter-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  direction: rtl;
  text-align: right;
}

.filter-btn i {
  font-size: 1rem;
  flex-shrink: 0;
}

.filter-btn:hover {
  background: rgba(204, 81, 29, 0.1);
  color: var(--brand);
  border-color: var(--brand);
}

.filter-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.faq-category {
  text-align: right;
  line-height: 1.7;
  direction: rtl;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  direction: rtl;
  flex-direction: row;
  justify-content: flex-start;
}

.faq-category-header .benefit-icon {
  width: 55px;
  height: 55px;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(204, 81, 29, 0.25);
}

.faq-category-info {
  text-align: right;
  direction: rtl;
  flex: 1;
}

.faq-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
  text-align: right;
  direction: rtl;
}

.faq-category-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: right;
  direction: rtl;
  display: block;
}

/* FAQ Responsive Styles */
@media (max-width: 767.98px) {
  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }

  .filter-btn i {
    font-size: 0.9rem;
  }

  .faq-accordion .accordion-button {
    padding: 1rem 3rem 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-accordion .accordion-button::after {
    right: 1rem;
  }

  .faq-accordion .accordion-body {
    padding: 1rem 1.25rem;
    font-size: 0.925rem;
  }

  .faq-category-header .benefit-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .faq-category-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .filter-buttons {
    gap: 0.5rem;
    padding: 0 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.825rem;
  }

  .faq-accordion .accordion-button {
    padding: 0.875rem 2.75rem 0.875rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .faq-accordion .accordion-button::after {
    right: 0.875rem;
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
  }

  .faq-accordion .accordion-button .bi {
    font-size: 1rem;
  }

  .faq-accordion .accordion-body {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .faq-category-header {
    gap: 0.75rem;
  }

  .faq-category-header .benefit-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .faq-category-title {
    font-size: 1rem;
  }

  .faq-category-count {
    font-size: 0.8rem;
  }
}

/* ===========================================
   CONTACT CARDS
   =========================================== */
.contact-card {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(204, 81, 29, 0.2);
}

.contact-card-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 25px rgba(204, 81, 29, 0.3);
}

.contact-card-icon.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.contact-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.contact-card a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--brand-dark);
}

/* ===========================================
   MAP WRAPPER
   =========================================== */
.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--brand), transparent 40%, transparent 60%, var(--brand));
  border-radius: calc(var(--radius-lg) + 3px);
  z-index: -1;
  opacity: 0.5;
}

.map-wrapper iframe {
  display: block;
  border-radius: var(--radius-lg);
}

/* ===========================================
   STATS CARDS
   =========================================== */
.stat-card {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  border-color: rgba(204, 81, 29, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 55px;
  height: 55px;
  background: rgba(204, 81, 29, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand);
  margin: 0 auto 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

@media (max-width: 767.98px) {
  .stat-card {
    padding: 1rem 0.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .stat-card {
    padding: 0.75rem 0.4rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

/* ===========================================
   PROCESS STEPS
   =========================================== */
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(204, 81, 29, 0.3);
  box-shadow: var(--shadow-lg);
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 25px rgba(204, 81, 29, 0.3);
}

.process-step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===========================================
   PARTNERS SECTION
   =========================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100px;
  width: 100%;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(204, 81, 29, 0.2);
}

.partner-logo img {
  max-height: 50px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 991.98px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .partner-logo {
    padding: 1rem;
    height: 80px;
  }

  .partner-logo img {
    max-height: 35px;
  }
}

@media (max-width: 575.98px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================================
   FOOTER STYLES
   =========================================== */
.site-footer {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  color: #fff;
  direction: rtl;
  text-align: right;
}

.footer-main {
  padding: 4rem 0 3rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-logo {
  filter: brightness(0) invert(1);
  max-height: 55px;
  width: auto;
}

.footer-about {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

.footer-widget {
  margin-bottom: 0;
}

.footer-widget-title {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-widget-title i {
  color: var(--brand);
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 0.875rem;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand);
  transform: translateX(-5px);
}

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

.footer-contact li {
  margin-bottom: 1rem;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact a,
.footer-contact .footer-hours {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--brand);
}

.footer-contact i {
  color: var(--brand);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  overflow: hidden !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.footer-bottom::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: hidden !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.footer-bottom-content::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--brand);
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
}

.footer-credit a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-credit a:hover {
  color: var(--brand-light);
}

/* Footer Responsive */
@media (max-width: 991.98px) {
  .footer-main {
    padding: 3rem 0 2rem;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-widget {
    text-align: right;
  }
}

@media (max-width: 575.98px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-legal {
    order: -1;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    padding-bottom: 70px;
    overflow: hidden !important;
  }
  
  .footer-bottom *,
  .footer-credit,
  .footer-copyright,
  .footer-legal {
    overflow: hidden !important;
    max-width: 100% !important;
  }
}

/* ===========================================
   STICKY CONTACT BUTTONS
   =========================================== */
.sticky-contact-buttons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: transparent !important;
  pointer-events: none;
}

.btn-whatsapp-sticky,
.btn-call-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.btn-whatsapp-sticky {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff !important;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
  color: #fff !important;
}

.btn-call-sticky {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff !important;
  box-shadow: 0 6px 25px rgba(204, 81, 29, 0.4);
}

.btn-call-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(204, 81, 29, 0.5);
  color: #fff !important;
}

.btn-whatsapp-sticky i,
.btn-call-sticky i {
  font-size: 1.5rem;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .sticky-contact-buttons {
    bottom: 15px;
    left: 15px;
    gap: 0.4rem;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 140px;
    background: transparent !important;
  }

  .btn-whatsapp-sticky,
  .btn-call-sticky {
    width: 42px;
    height: 42px;
  }

  .btn-whatsapp-sticky i,
  .btn-call-sticky i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .sticky-contact-buttons {
    bottom: 12px;
    left: 12px;
    gap: 0.35rem;
    max-width: 130px;
    background: transparent !important;
  }

  .btn-whatsapp-sticky,
  .btn-call-sticky {
    width: 38px;
    height: 38px;
  }

  .btn-whatsapp-sticky i,
  .btn-call-sticky i {
    font-size: 1rem;
  }
}

/* ===========================================
   FILTER BUTTONS (Services Page)
   =========================================== */
.services-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
  direction: rtl;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  background: rgba(204, 81, 29, 0.05);
  border-color: rgba(204, 81, 29, 0.2);
  color: var(--brand);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 15px rgba(204, 81, 29, 0.3);
}

@media (max-width: 575.98px) {
  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* ===========================================
   PAGE HERO (Inner Pages)
   =========================================== */
.page-hero {
  background: var(--bg-secondary);
  padding: 140px 0 60px;
  text-align: center;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(204, 81, 29, 0.1);
  border: 1px solid rgba(204, 81, 29, 0.2);
  border-radius: 50px;
  color: var(--brand);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.page-hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================================
   INTERIOR PAGE STYLES (Light Theme)
   =========================================== */

/* Light Legal Card */
.legal-card-light {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.legal-section-light {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-section-light:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section-light h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-right: 1rem;
  border-right: 4px solid var(--brand);
}

.legal-section-light h3 {
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.legal-section-light p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.legal-section-light ul {
  color: var(--text-secondary);
  padding-right: 2rem;
  padding-left: 0;
  margin-bottom: 1rem;
  list-style: none;
}

.legal-section-light li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  padding-right: 1.5rem;
  position: relative;
}

.legal-section-light li::before {
  content: "•";
  color: var(--brand);
  font-weight: bold;
  position: absolute;
  right: 0;
}

/* Light Contact Info Box */
.contact-info-box-light {
  background: rgba(204, 81, 29, 0.05);
  border: 1px solid rgba(204, 81, 29, 0.15);
  border-right: 4px solid var(--brand);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.contact-info-item-light {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  transition: var(--transition);
}

.contact-info-item-light:hover {
  background: rgba(204, 81, 29, 0.05);
  transform: translateX(-5px);
}

.contact-info-item-light:last-child {
  border-bottom: none;
}

/* Light Blog Card */
.blog-card-light {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.blog-card-light:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(204, 81, 29, 0.2);
}

.blog-card-light .blog-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card-light:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-light .blog-card-body {
  padding: 1.5rem;
}

.blog-card-light .blog-card-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.blog-card-light .blog-card-title a:hover {
  color: var(--brand);
}

.blog-card-light .blog-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-card-light .blog-card-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Light Partner Card */
.partner-card-light {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.partner-card-light:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(204, 81, 29, 0.2);
}

.partner-card-light .partner-card-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 12px;
}

.partner-card-light .partner-logo-large {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-card-light:hover .partner-logo-large {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.partner-card-light .partner-name {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.partner-card-light .partner-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* Light Booking Form */
.booking-form-card-light {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.booking-form-card-light .form-control,
.booking-form-card-light .form-select {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  transition: var(--transition);
}

.booking-form-card-light .form-control:focus,
.booking-form-card-light .form-select:focus {
  background-color: var(--bg-primary);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(204, 81, 29, 0.15);
  outline: none;
}

.booking-form-card-light .form-label {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Light Quick Contact Card */
.quick-contact-card-light {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

/* Light CTA Contact Card */
.cta-contact-card-light {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: var(--transition);
}

.cta-contact-card-light:hover {
  background: var(--bg-primary);
  border-color: rgba(204, 81, 29, 0.2);
  transform: translateX(-5px);
}

.cta-contact-card-light .contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(204, 81, 29, 0.25);
}

.cta-contact-card-light .contact-title {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cta-contact-card-light .contact-link {
  color: var(--brand);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.cta-contact-card-light .contact-link:hover {
  color: var(--brand-dark);
}

/* Light FAQ Page Styles */
.faq-hero-light {
  background: var(--bg-secondary);
  padding: 140px 0 80px;
}

.faq-content-light {
  background: var(--bg-primary);
}

.category-tabs-light {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.category-tab-light {
  padding: 0.75rem 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.category-tab-light:hover {
  background: rgba(204, 81, 29, 0.05);
  color: var(--brand);
  border-color: rgba(204, 81, 29, 0.2);
}

.category-tab-light.active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 15px rgba(204, 81, 29, 0.3);
}

.faq-item-light {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item-light:hover {
  border-color: rgba(204, 81, 29, 0.15);
  box-shadow: var(--shadow-md);
}

.faq-question-light {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question-light:hover {
  background: rgba(204, 81, 29, 0.03);
}

.faq-question-light.active {
  background: rgba(204, 81, 29, 0.05);
  color: var(--brand);
}

.faq-answer-light {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===========================================
   UTILITIES
   =========================================== */
.text-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light-gray {
  background-color: var(--bg-secondary) !important;
}

/* Gallery Section Overrides */
.works-gallery-section {
  background: var(--bg-primary) !important;
}

.works-gallery-section .nav-pills .nav-link {
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 500;
}

.works-gallery-section .nav-pills .nav-link.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Responsive Grid Fixes */
@media (max-width: 767.98px) {
  .row.g-4>[class*="col-6"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .benefit-card {
    padding: 1.5rem 1rem;
  }

  .benefit-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .benefit-title {
    font-size: 0.95rem;
  }

  .benefit-description {
    font-size: 0.8rem;
  }
}

/* ===========================================
   STAGES INFOGRAPHIC SECTION
   =========================================== */
.bg-dark-deep {
  background-color: #0f172a !important;
}

.stages-grid {
  margin-top: 3rem;
}

.stage-item {
  padding: 1.5rem;
  transition: var(--transition);
  border-radius: var(--radius);
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.stage-item:hover {
  background: var(--bg-primary);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.stage-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 81, 29, 0.1);
  border-radius: 50%;
  color: var(--brand);
  font-size: 2rem;
  border: 2px solid rgba(204, 81, 29, 0.2);
  transition: var(--transition);
}

.stage-item:hover .stage-icon-wrapper {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 8px 20px rgba(204, 81, 29, 0.3);
}

.stage-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(204, 81, 29, 0.3);
}

.stage-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: var(--transition);
  color: #1a1a2e !important;
}

.stage-item:hover .stage-title {
  color: var(--brand) !important;
}

.stage-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #4a4a5a !important;
  margin: 0;
}

/* Glassmorphism & Modern Utilities */
.bg-glass-dark {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.bg-brand-light {
  background-color: rgba(204, 81, 29, 0.15) !important;
}

.text-light-soft {
  color: rgba(255, 255, 255, 0.75) !important;
}

@media (max-width: 767.98px) {
  .stage-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .stage-number {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .stage-title {
    font-size: 0.85rem;
    color: #1a1a2e !important;
    margin-bottom: 0.5rem;
  }

  .stage-desc {
    display: block;
    font-size: 0.7rem;
    line-height: 1.4;
    color: #4a4a5a !important;
  }

  .stage-item {
    padding: 1rem 0.5rem;
  }
}

.bg-dark-soft {
  background-color: #1e293b !important;
}

.bg-dark-deep {
  background-color: #0f172a !important;
}

.text-light-soft {
  color: #94a3b8 !important;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================================
   FOOTER ASSETS SECTION
   =========================================== */
.footer-assets-section {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
}

.ministry-logos {
  flex-wrap: wrap;
}

.ministry-logo-wrapper,
.vat-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-bg-white {
  background: #fff;
  padding: 0.75rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ministry-logo,
.vat-logo {
  max-height: 62px;
  width: auto;
  filter: none !important;
  -webkit-filter: none !important;
  transition: var(--transition);
  opacity: 1 !important;
}

.logo-number {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin: 0.5rem 0 0;
  white-space: nowrap;
  direction: rtl;
}

.payment-methods-section {
  text-align: center;
}

.payment-methods-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.payment-methods-title i {
  color: var(--brand);
  font-size: 1.1rem;
}

.payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.payment-method-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  transition: var(--transition);
  height: 50px;
  min-width: 70px;
}

.payment-method-item.payment-bg-white {
  background: #fff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex: 0 0 auto;
}

.payment-method-item:hover {
  transform: translateY(-2px) scale(1.05);
}

.payment-method-item.payment-bg-white:hover {
  background: #fff !important;
}

.payment-method-item img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
  transition: var(--transition);
  background: transparent !important;
}

.payment-method-item:hover img {
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
}

/* Ministry Modal */
.ministry-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.ministry-modal.active {
  display: flex;
}

.ministry-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.ministry-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  z-index: 10000;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.ministry-modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10001;
  font-size: 1.25rem;
}

.ministry-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.ministry-modal-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* Responsive Footer Assets */
@media (max-width: 991.98px) {
  .footer-assets-section {
    padding: 1.5rem 0;
    background: transparent !important;
  }

  .ministry-logos {
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }

  .payment-methods-section {
    text-align: center;
  }

  .payment-methods-title {
    justify-content: center !important;
  }
}

@media (max-width: 767.98px) {
  .payment-methods-grid {
    gap: 0.5rem;
  }

  .payment-method-item {
    height: 45px;
    padding: 0.4rem 0.6rem;
    min-width: 60px;
  }

  .payment-method-item.payment-bg-white {
    background: #fff !important;
  }

  .payment-method-item img {
    max-height: 28px;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
  }

  .ministry-modal-content {
    max-width: 95%;
    padding: 1.5rem;
  }

  .ministry-logo,
  .vat-logo {
    max-height: 55px !important;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
  }

  .logo-bg-white {
    padding: 0.5rem;
  }

  .logo-number {
    font-size: 0.6rem;
  }
}

@media (max-width: 575.98px) {
  .payment-methods-grid {
    gap: 0.4rem;
  }

  .payment-method-item {
    min-width: 55px;
    height: 40px;
    padding: 0.3rem 0.5rem;
  }

  .payment-method-item.payment-bg-white {
    background: #fff !important;
  }

  .payment-method-item img {
    max-height: 24px;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
  }

  .ministry-logos {
    gap: 0.75rem !important;
  }

  .ministry-logo,
  .vat-logo {
    max-height: 50px !important;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
  }

  .logo-bg-white {
    padding: 0.4rem;
  }

  .logo-number {
    font-size: 0.55rem;
  }
}

/* ===========================================
   PACKAGES SECTION
   =========================================== */
.packages-section {
  background: var(--bg-secondary);
}

.car-type-selector {
  margin-bottom: 3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.car-type-selector::-webkit-scrollbar {
  display: none;
}

.car-type-btn {
  position: relative;
  padding: 0.875rem 1.75rem;
  background: var(--bg-primary);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  direction: rtl;
}

.car-type-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(204, 81, 29, 0.05);
  transform: translateY(-2px);
}

.car-type-btn.active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 15px rgba(204, 81, 29, 0.3);
}

.car-type-btn.popular-badge .popular-label {
  position: absolute;
  top: -8px;
  left: -8px;
  background: #ff6b35;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.package-card {
  background: var(--bg-primary);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 100%);
  opacity: 0;
  transition: var(--transition);
}

.package-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.package-card:hover::before {
  opacity: 1;
}

.package-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.package-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.package-name-en {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-name-ar {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
}

.package-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.package-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.package-price {
  text-align: center;
  padding: 1.5rem;
  background: rgba(204, 81, 29, 0.05);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  display: block;
  line-height: 1;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 0.5rem;
}

.price-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.package-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.features-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.features-header i {
  color: var(--brand);
  font-size: 1.1rem;
}

.features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
  direction: rtl;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li i {
  color: var(--brand);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.features-list li span {
  flex: 1;
  text-align: right;
  direction: rtl;
}

.package-cta {
  margin-top: auto;
}

.package-cta .btn {
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
}

/* Package Card Popular Badge */
.package-card.popular {
  border-color: var(--brand);
  box-shadow: 0 8px 30px rgba(204, 81, 29, 0.2);
}

.package-card.popular::after {
  content: 'الأكثر طلباً';
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(204, 81, 29, 0.3);
}

/* Responsive Packages */
@media (max-width: 991.98px) {
  .package-card {
    padding: 1.75rem;
  }

  .price-amount {
    font-size: 2.25rem;
  }
}

@media (max-width: 767.98px) {
  .car-type-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .package-card {
    padding: 1.5rem;
  }

  .package-title {
    font-size: 1.2rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .features-list li {
    font-size: 0.85rem;
    padding: 0.6rem 0;
  }
}

@media (max-width: 575.98px) {
  .car-type-selector {
    margin-bottom: 2rem;
  }

  .car-type-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }

  .package-card {
    padding: 1.25rem;
  }

  .package-title {
    font-size: 1.1rem;
  }

  .price-amount {
    font-size: 1.75rem;
  }
}

/* ===========================================
   GLOBAL MOBILE OVERFLOW FIX - FINAL
   =========================================== */
@media (max-width: 991.98px) {
  /* CRITICAL: Force prevent horizontal scroll */
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100vw !important;
    position: relative !important;
  }
  
  /* Ensure all main elements don't overflow */
  main,
  header,
  footer,
  section,
  article,
  aside,
  .container,
  .container-fluid {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  /* Fix Bootstrap row */
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }
  
  /* Fix absolute positioned elements */
  .hero-section,
  .page-hero {
    overflow: hidden !important;
  }
  
  /* Fix carousel controls */
  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next {
    display: none !important;
  }
  
  /* Ensure images don't overflow */
  img,
  video,
  iframe,
  embed,
  object,
  svg {
    max-width: 100% !important;
  }
  
  /* Fix card hover transforms - only vertical */
  .benefit-card:hover,
  .service-card:hover,
  .package-card:hover,
  .stat-card:hover,
  .blog-card-light:hover,
  .partner-card-light:hover,
  .partner-logo:hover,
  .process-step:hover,
  .contact-card:hover {
    transform: translateY(-5px) !important;
  }
  
  /* Disable horizontal transforms completely */
  .footer-links a:hover,
  .contact-info-item-light:hover,
  .quick-contact-item:hover,
  a:hover {
    transform: translateY(0) !important;
  }
  
  /* Fix flex containers */
  .d-flex,
  .flex-wrap {
    max-width: 100% !important;
  }
  
  /* Fix car type selector */
  .car-type-selector {
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix payment methods grid */
  .payment-methods-grid {
    max-width: 100% !important;
    flex-wrap: wrap !important;
  }
  
  /* Fix footer */
  .site-footer {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
  
  .footer-assets-section {
    overflow-x: hidden !important;
  }
}

@media (max-width: 575.98px) {
  /* Extra small devices - AGGRESSIVE fixes */
  html,
  body {
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }
  
  .hero-content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100% !important;
  }
  
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    max-width: 100% !important;
  }
  
  /* Ensure text doesn't cause overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li,
  .section-title,
  .hero-title,
  .page-hero-title,
  .stage-title,
  .stage-desc {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }
  
  /* Fix all rows */
  .row {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  
  /* Fix stages grid */
  .stages-grid {
    max-width: 100% !important;
  }
  
  .stage-item {
    max-width: 100% !important;
    overflow: hidden !important;
  }
  
  /* Fix packages grid */
  .packages-grid {
    max-width: 100% !important;
  }
  
  /* Fix benefits section */
  .benefit-card {
    max-width: 100% !important;
    overflow: hidden !important;
  }
  
  /* No transforms on mobile */
  *:hover {
    transform: none !important;
  }
}

/* ===========================================
   CONTAINER WIDTH CUSTOMIZATION - 80% WIDTH
   =========================================== */

/* Set all containers to 80% width instead of default Bootstrap width */
body .container,
section .container,
div.container,
.container.py-5 {
  max-width: 80% !important;
  width: 80% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Exception: Keep hero section container at full width (100%) */
.hero-section .container,
.hero-content .container,
section.hero-section .container,
.hero-section div.container {
  max-width: 1320px !important;
  width: 100% !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1400px) {
  body .container,
  section .container,
  div.container,
  .container.py-5 {
    max-width: 85% !important;
    width: 85% !important;
  }

  .hero-section .container,
  .hero-content .container {
    max-width: 1140px !important;
  }
}

@media (max-width: 1200px) {
  body .container,
  section .container,
  div.container,
  .container.py-5 {
    max-width: 90% !important;
    width: 90% !important;
  }

  .hero-section .container,
  .hero-content .container {
    max-width: 960px !important;
  }
}

@media (max-width: 992px) {
  body .container,
  section .container,
  div.container,
  .container.py-5 {
    max-width: 95% !important;
    width: 95% !important;
  }

  .hero-section .container,
  .hero-content .container {
    max-width: 720px !important;
  }
}

@media (max-width: 768px) {
  body .container,
  section .container,
  div.container,
  .container.py-5 {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-section .container,
  .hero-content .container {
    max-width: 540px !important;
  }
}

@media (max-width: 576px) {
  body .container,
  section .container,
  div.container,
  .container.py-5 {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .hero-section .container,
  .hero-content .container {
    max-width: 100% !important;
  }
}