/**
 * Desi Ride Detailing - Custom Styles
 * Modern, compact design with dark/light theme support and Mac/iOS aesthetics
 */

/* ============================================
   CSS Custom Properties (Variables)
============================================ */

:root {
  /* Color Palette - Brighter Colors */
  --primary-red: #FF1744;
  --primary-red-hover: #E91E63;
  --accent-blue: #2196F3;
  --accent-blue-hover: #03A9F4;
  --accent-green: #00E676;
  --accent-orange: #FF9800;
  --accent-purple: #9C27B0;
  --dark-black: #1A1A1A;
  --muted-gray: #757575;
  --light-gray: #F8F9FA;
  --white: #FFFFFF;
  
  /* Theme Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-tertiary: #E9ECEF;
  --text-primary: #212529;
  --text-secondary: #6C757D;
  --text-muted: #ADB5BD;
  --border-color: #DEE2E6;
  --shadow-color: rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.18);
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --bg-primary: #121212;
  --bg-secondary: #1E1E1E;
  --bg-tertiary: #2D2D2D;
  --text-primary: #FFFFFF;
  --text-secondary: #E0E0E0;
  --text-muted: #B3B3B3;
  --border-color: #404040;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --glass-bg: rgba(18, 18, 18, 0.95);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* Dark Theme Body Styles */
[data-theme="dark"] body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

[data-theme="dark"] .bg-white {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary);
}

[data-theme="dark"] .bg-light {
  background-color: var(--bg-tertiary) !important;
  color: var(--text-primary);
}

[data-theme="dark"] .text-dark {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .text-muted {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .card {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-primary);
}

[data-theme="dark"] .service-card {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}

[data-theme="dark"] .modern-nav {
  background: var(--bg-primary) !important;
  border-bottom-color: var(--border-color);
}

[data-theme="dark"] .modern-nav.scrolled {
  background: var(--bg-primary) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .navbar-light .navbar-brand,
[data-theme="dark"] .navbar-light .navbar-nav .nav-link {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .brand-name {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .brand-tagline {
  color: var(--text-secondary) !important;
}

[data-theme="dark"] .modern-nav-link {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .modern-nav-link:hover,
[data-theme="dark"] .modern-nav-link.active {
  color: white !important;
}

[data-theme="dark"] .modern-theme-toggle {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-color: var(--border-color);
}

[data-theme="dark"] .modern-theme-toggle:hover {
  background: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
}

[data-theme="dark"] .modern-dropdown {
  background: var(--bg-secondary) !important;
  border-color: var(--border-color);
}

[data-theme="dark"] .dropdown-item {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .dropdown-item:hover {
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  color: white !important;
}

[data-theme="dark"] .toggler-line {
  background: var(--text-primary) !important;
}

[data-theme="dark"] .modern-toggler {
  background: transparent;
}

[data-theme="dark"] .navbar-collapse {
  background: var(--bg-primary) !important;
  border-color: var(--border-color) !important;
}

/* ============================================
   Base Styles
============================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  position: relative;
  /* Windows-specific optimizations */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.main-content {
  margin-top: 0px;
  min-height: calc(100vh - 80px);
  width: 100%;
  position: relative;
}

/* ============================================
   RESPONSIVE BODY & CONTENT LAYOUT
============================================ */

/* Desktop styles (default) */
@media (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .main-content {
    padding: 0;
  }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .main-content {
    padding: 0 10px;
  }
  
  .container {
    max-width: 720px;
  }
}

/* Mobile styles */
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  .main-content {
    padding: 0 5px;
    margin-top: 0;
    min-height: calc(100vh - 70px);
  }
  
  .container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Small mobile styles */
@media (max-width: 575.98px) {
  body {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .main-content {
    padding: 0;
    margin-top: 0;
  }
  
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Extra small mobile styles */
@media (max-width: 320px) {
  body {
    font-size: 12px;
  }
  
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* ============================================
   WINDOWS RESPONSIVE BREAKPOINTS
============================================ */

/* Ultra-wide screens (Windows 4K, ultrawide monitors) */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    margin: 0 auto;
  }
  
  body {
    font-size: 18px;
    line-height: 1.7;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  h1, .display-1 {
    font-size: 4rem;
  }
  
  h2, .display-2 {
    font-size: 3rem;
  }
}

/* Large desktop (Windows standard desktop 1366px-1920px) */
@media (min-width: 1366px) and (max-width: 1919.98px) {
  .container {
    max-width: 1200px;
  }
  
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
}

/* Standard desktop (Windows 1024px-1365px) */
@media (min-width: 1024px) and (max-width: 1365.98px) {
  .container {
    max-width: 960px;
  }
  
  body {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .section-padding {
    padding: 3.5rem 0;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
}

/* Windows laptop/small desktop (900px-1023px) */
@media (min-width: 900px) and (max-width: 1023.98px) {
  .container {
    max-width: 850px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  body {
    font-size: 15px;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card {
    padding: 1.8rem 1.2rem;
  }
  
  .btn-lg {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* Windows tablet landscape (768px-899px) */
@media (min-width: 768px) and (max-width: 899.98px) {
  .container {
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  body {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .row > * {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }
  
  .card-body {
    padding: 1.2rem;
  }
}

/* ============================================
   WINDOWS BROWSER COMPATIBILITY
============================================ */

/* Internet Explorer and Edge compatibility */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .container {
    display: block;
  }
  
  .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .service-card {
    -ms-flex: 1 0 300px;
    flex: 1 0 300px;
  }
}

/* Chrome on Windows optimization */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  body {
    -webkit-font-smoothing: antialiased;
  }
  
  .btn {
    -webkit-appearance: none;
    appearance: none;
    border: none;
  }
}

/* Firefox on Windows optimization */
@-moz-document url-prefix() {
  body {
    -moz-osx-font-smoothing: grayscale;
  }
  
  .service-card {
    -moz-border-radius: 1rem;
    border-radius: 1rem;
  }
}

/* ============================================
   WINDOWS DPI AND SCALING SUPPORT
============================================ */

/* High DPI Windows displays (150% scaling) */
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  
  .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
}

/* Very high DPI Windows displays (200% scaling and above) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .btn {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
  }
  
  .service-card {
    padding: 2.5rem 2rem;
  }
  
  h1, .display-1 {
    font-size: 2.2rem;
  }
  
  h2, .display-2 {
    font-size: 1.8rem;
  }
}

/* Windows Surface and touch device optimization */
@media (pointer: coarse) {
  .btn {
    min-height: 44px;
    min-width: 44px;
    padding: 0.8rem 1.5rem;
  }
  
  .navbar-toggler,
  .modern-toggler {
    min-height: 44px;
    min-width: 44px;
    padding: 0.5rem;
  }
  
  .modern-toggler {
    width: 44px;
    height: 44px;
  }
  
  .service-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  a, button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Windows landscape orientation optimization */
@media (orientation: landscape) and (max-height: 600px) {
  .section-padding {
    padding: 2rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
}

/* ============================================
   Responsive Fixes for Mobile Horizontal Scroll
============================================ */

/* Ensure all containers don't overflow */
.container,
.container-fluid {
  max-width: 85%;
}

/* Fix Bootstrap row overflow */
.row {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.row > * {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}

/* Prevent all images from overflowing */
img, 
video,
iframe,
embed,
object {
  max-width: 100%;
 
}

/* Mobile horizontal scroll prevention */
@media (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
  
  body {
    overflow-x: hidden;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .row > * {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Responsive sections */
  section {
    padding: 2rem 0;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .compact-section {
    padding: 1.5rem 0;
  }
  
  /* Responsive typography */
  h1, .display-1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h2, .display-2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.7rem;
  }
  
  h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  h5, h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  p, .lead {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  /* Responsive buttons */
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 0.5rem;
  }
  
  .btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  /* Responsive cards */
  .card {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  /* Responsive service cards */
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .service-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
}

/* Extra small mobile adjustments */
@media (max-width: 575.98px) {
  section {
    padding: 1.5rem 0;
  }
  
  .section-padding {
    padding: 1.5rem 0;
    
  }
  
  h1, .display-1 {
    font-size: 1.6rem;
  }
  
  h2, .display-2 {
    font-size: 1.3rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .btn-group .btn {
    width: auto;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .card-body {
    padding: 0.8rem;
  }
}

/* Fix table overflow on mobile */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  width: 100%;
}

/* Ensure pricing tables don't cause horizontal scroll */
.pricing-table-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.pricing-table {
  width: 100%;
  min-width: 300px; /* Reduced for mobile compatibility */
  margin: 0;
}

/* Mobile-specific pricing table adjustments */
@media (max-width: 768px) {
  .pricing-table {
    min-width: 280px;
    font-size: 14px;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 8px 4px;
    font-size: 13px;
  }
}

/* Ensure sections don't overflow */
section {
  width: 100%;
}

/* Fix card and content overflow */
.card,
.service-card,
.pricing-card {
  max-width: 100%;
}

/* ============================================
   Typography
============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: white;
}

.display-1, .display-2, .display-3, .display-4 {
  font-weight: 700;
}

.text-primary {
  color: var(--primary-red) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* ============================================
   Modern Navigation
============================================ */

.modern-nav {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding:0.5rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-nav.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Navbar Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* Logo Container */
.logo-container {
  position: relative;
  display: flex;
  align-items: center;
}

.logo-icon {
  width: auto;
  height: auto;
  max-height: 100px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-icon img {
  max-width: 100%;
  height: 100px;
  width: auto;
  object-fit: contain;
}
 


/* Brand Name & Tagline */
.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Modern Toggler */
.modern-toggler {
  border: none;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modern-toggler:focus {
  box-shadow: none;
  outline: none;
}

.toggler-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  position: relative;
}

/* Hamburger to X animation - when menu is open (not collapsed) */
.modern-toggler:not(.collapsed) .toggler-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.modern-toggler:not(.collapsed) .toggler-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.modern-toggler:not(.collapsed) .toggler-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Collapsed state - hamburger menu (default) */
.modern-toggler.collapsed .toggler-line {
  transform: translateY(0) rotate(0) scale(1);
  opacity: 1;
}

.modern-toggler.collapsed .toggler-line:nth-child(1) {
  transform: translateY(0) rotate(0);
}

.modern-toggler.collapsed .toggler-line:nth-child(2) {
  transform: translateY(0) rotate(0) scale(1);
  opacity: 1;
}

.modern-toggler.collapsed .toggler-line:nth-child(3) {
  transform: translateY(0) rotate(0);
}

/* Navigation Links */
.modern-nav-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 12px 16px !important;
  margin: 0 4px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text-primary) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
}

.modern-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.modern-nav-link:hover::before,
.modern-nav-link.active::before {
  opacity: 1;
  transform: scale(1);
}

.modern-nav-link:hover,
.modern-nav-link.active {
  color: white !important;
  transform: translateY(-2px);
}

.nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.nav-text {
  font-size: 14px;
  font-weight: 500;
}

/* Modern Dropdown */
.modern-dropdown {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 8px;
  margin-top: 8px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95);
}

.modern-dropdown .dropdown-item {
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  color: var(--text-primary);
}

.modern-dropdown .dropdown-item:hover {
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  color: white;
  transform: translateX(4px);
}

/* Navbar Actions */
.navbar-actions {
  gap: 1rem;
}

.modern-theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modern-theme-toggle:hover {
  background: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
  transform: scale(1.05);
}

/* Modern Buttons */
.modern-btn {
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modern-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.modern-btn:hover::before {
  left: 100%;
}

.modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary.modern-btn {
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  color: white;
  border: none;
}

.btn-outline-primary.modern-btn {
  background: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.btn-outline-primary.modern-btn:hover {
  background: var(--primary-red);
  color: white;
}

/* Navigation Animation Effects */
.modern-nav {
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-nav.nav-hidden {
  transform: translateY(-100%);
}

.modern-nav.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98) !important;
}

/* Button Hover Effects */
.btn-hover-effect {
  animation: btnPulse 0.6s ease-in-out;
}

@keyframes btnPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Dropdown Animation */
.modern-dropdown {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-dropdown.show {
  opacity: 1;
  transform: translateY(0);
}



/* Logo Animation */
.logo-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .navbar-brand:hover .logo-icon {
   transform: rotate(10deg) scale(1.1);  
   box-shadow: 0 6px 20px rgba(255, 23, 68, 0.4);  
} */

/* Active Link Indicator */
.modern-nav-link.active {
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  color: white !important;
}

.modern-nav-link.active::before {
  opacity: 1;
  transform: scale(1);
}

/* Responsive Navigation */
@media (max-width: 991.98px) {
  .modern-nav {
    padding: 1.25rem 0;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .modern-nav-link {
    margin: 2px 0;
  }
  
  .navbar-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
  }
  
  .nav-cta-buttons {
    width: 100%;
  }
  
  .nav-cta-buttons .modern-btn {
    flex: 1;
    justify-content: center;
  }
  
  /* Mobile menu improvements */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .logo-icon {
    margin-right: 0.5rem;
    max-height: 80px; /* Mobile logo height */
  }
  
  .logo-icon img {
    height: 80px !important; /* Mobile logo size 80px */
  }
  
  .modern-nav {
    padding: 1rem 0; /* Mobile navbar padding for 80px logo */
  }
  
  .modern-nav.nav-hidden {
    transform: translateY(0); /* Don't hide on mobile */
  }
  
  /* Mobile toggler improvements */
  .modern-toggler {
    width: 44px;
    height: 44px;
    padding: 10px;
    margin-right: 0;
  }
  
  .toggler-line {
    width: 24px;
    height: 2.5px;
    margin: 2.5px 0;
  }
}

/* ============================================
   Image Placeholders & Styling
============================================ */

/* Fallback for missing images */
img {
  max-width: 100%;
  height: auto;
}

img[src$=".jpg"]:not([src*="http"]),
img[src$=".jpeg"]:not([src*="http"]),
img[src$=".png"]:not([src*="http"]) {
   /* background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));  */
   color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  min-height: 80px;
} 

img[src$=".jpg"]:not([src*="http"])::before,
img[src$=".jpeg"]:not([src*="http"])::before,
img[src$=".png"]:not([src*="http"])::before {
  content: "Image Loading...";
}


.dark-img {
  filter: brightness(60%);
  transition: filter 0.3s ease;
}






/* //////////////////////////////// */
/* Service Image Placeholders */
.service-image-placeholder {
  width: 100%;
  height: 30%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

/* Team Image Placeholders */
.team-image-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-purple), var(--primary-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Car Wash Animation (replaces Lottie)
============================================ */

.booking-illustration {
  padding: 2rem;
}

.car-icon-animation {
  position: relative;
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: carBounce 2s ease-in-out infinite;
}

.washing-bubbles {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bubble {
  position: absolute;
  background: rgba(33, 150, 243, 0.6);
  border-radius: 50%;
  animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 12px;
  height: 12px;
  top: 30%;
  right: 25%;
  animation-delay: 0.5s;
}

.bubble-3 {
  width: 6px;
  height: 6px;
  top: 10%;
  right: 35%;
  animation-delay: 1s;
}

.bubble-4 {
  width: 10px;
  height: 10px;
  top: 40%;
  left: 30%;
  animation-delay: 1.5s;
}

@keyframes carBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bubbleFloat {
  0% { 
    opacity: 0;
    transform: translateY(20px) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(0);
  }
}

/* Service Icons Animation */
.service-icon-animated {
  display: inline-block;
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
  animation: serviceIconPulse 2s ease-in-out infinite;
}

@keyframes serviceIconPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Why Choose Us Illustration */
.why-choose-illustration {
  position: relative;
  padding: 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-car-icon {
  border-radius: 25px;

  /* animation: carRotate 4s ease-in-out infinite; */
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-icon {
  position: absolute;
  font-size: 1.5rem;
  animation: floatAround 3s ease-in-out infinite;
}

.float-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.float-2 {
  top: 20%;
  right: 20%;
  animation-delay: 0.75s;
}

.float-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 1.5s;
}

.float-4 {
  bottom: 20%;
  right: 20%;
  animation-delay: 2.25s;
}

@keyframes carRotate {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
  }
  50% { 
    transform: rotate(5deg) scale(1.05);
  }
}

@keyframes floatAround {
  0%, 100% { 
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-15px) rotate(180deg);
    opacity: 1;
  }
}

/* ============================================
   Buttons
============================================ */

.btn {
  font-family: var(--font-secondary);
  font-weight: 500;
  border-radius: var(--radius-md);
  padding: var(--spacing-sm) var(--spacing-lg);
  transition: all var(--transition-fast);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-red-hover), var(--primary-red));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-outline-primary {
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: translateY(-1px);
}

.rounded-pill {
  border-radius: 50px !important;
 
}
.lern{
 margin-left: 236px;}

/* ============================================
   Cards
============================================ */

.card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-red);
}

.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.card-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
}

/* ============================================
   Forms
============================================ */

.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-secondary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(198, 40, 40, 0.25);
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

/* ============================================
   Modals
============================================ */

.modal-content {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: var(--bg-primary);
}

.glass-modal {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
}

.modal-header {
  border-bottom: 1px solid var(--border-color);
}

.modal-title {
  color: var(--text-primary);
}

/* ============================================
   Floating Elements
============================================ */

.social-float-bar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  box-shadow: var(--shadow-md);

}

.social-icon.facebook {
  background: linear-gradient(135deg, #1877F2, #4267B2);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.social-icon.youtube {
  background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-icon.tiktok {
  background: linear-gradient(135deg, #000000, #FF0050);
}

.social-icon:hover {
  transform: translateX(5px) scale(1.1);
  color: var(--white);
}

/* Topbar and Footer Social Icons */
.social-links a,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

/* Topbar Social Links */
.social-links a.facebook,
.social-link[href*="facebook"] {
  background: linear-gradient(135deg, #1877F2, #4267B2);
}

.social-links a.instagram,
.social-link[href*="instagram"] {
  background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.social-links a.youtube,
.social-link[href*="youtube"] {
  background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-links a.tiktok,
.social-link[href*="tiktok"] {
  background: linear-gradient(135deg, #000000, #FF0050);
}

/* Auto-detect social platform by URL */
.social-links a[href*="facebook.com"],
.social-link[href*="facebook.com"] {
  background: linear-gradient(135deg, #1877F2, #4267B2);
}

.social-links a[href*="instagram.com"],
.social-link[href*="instagram.com"] {
  background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.social-links a[href*="youtube.com"],
.social-link[href*="youtube.com"] {
  background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-links a[href*="tiktok.com"],
.social-link[href*="tiktok.com"] {
  background: linear-gradient(135deg, #000000, #FF0050);
}

/* Hover Effects */
.social-links a:hover,
.social-link:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

/* Dark Theme Social Icons */
[data-theme="dark"] .social-links a,
[data-theme="dark"] .social-link {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .social-links a:hover,
[data-theme="dark"] .social-link:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* Responsive Social Icons */
@media (max-width: 768px) {
  /* Hide social icons in topbar on mobile */
  .top-bar .social-links {
    display: none !important;
  }
  
  /* Smaller social icons in footer on mobile */
  .social-link {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.whatsapp-float,
.email-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
}

.whatsapp-float {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.email-float {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
}

.whatsapp-float:hover,
.email-float:hover {
  transform: scale(1.1);
  color: var(--white);
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============================================
   Hero Sections
============================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 0; /* Remove padding, let slides handle it */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Slide Backgrounds with Car Detailing Themes */
.hero-slide-1 {
  /* background: 
    linear-gradient(135deg, rgba(255, 23, 68, 0.9) 0%, rgba(233, 30, 99, 0.9) 50%, rgba(156, 39, 176, 0.9) 100%),
    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='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */

  background-size: 80px 80px, cover;
  position: relative;
}

.hero-slide-2 {
 
  background-size: 80px 80px, cover;
  position: relative;
}

.hero-slide-3 {
 
  background-size: 80px 80px, cover;
  position: relative;
  
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), /* dark overlay */
    url('slide1.jpg'),
    url('slide2.jpg'),
    url('slide3.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}


/* .hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
} */

/* Car Pattern Overlay (CSS-only) */
.hero-slide-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  z-index: 0;
}

.hero-slide-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
 
  z-index: 0;
}

.hero-slide-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 120px; /* Account for navigation height */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

/* ============================================
   Swiper Customization
============================================ */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--white) !important;
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-red);
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  transition: all var(--transition-fast);
}

.swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-red);
  border-color: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.6);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  background: rgba(53, 50, 50, 0.1);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: grey;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 23, 68, 0.8);
  border-color: var(--white);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Loading state */
.hero-swiper.loading {
  opacity: 0.7;
}

.hero-swiper.loading .swiper-slide {
  pointer-events: none;
}

/* ============================================
   Page Headers
   
============================================ */
/*  */
.page-header {
   position: relative;
  /*min-height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) 0; */
 background: url('assets/images/read.jpg') center center / cover no-repeat;
  padding: 120px 0;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  background-size: 40px 40px;
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.page-breadcrumb {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-sm) var(--spacing-md);
  margin: 0;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
  color: var(--white);
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
  content: "›";
  font-weight: bold;
}

/* Dark Theme Page Header */
[data-theme="dark"] .page-header {
 background: url('assets/images/read.jpg') center center / cover no-repeat;
  
}

/* [data-theme="dark"] .breadcrumb {
  background: rgba(0, 0, 0, 0.3);
} */

/* Page Header Responsive */
@media (max-width: 768px) {
  .page-header {
    min-height: 20vh;
    padding: var(--spacing-lg) 0;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .page-breadcrumb {
    position: static;
    transform: none;
    margin-top: var(--spacing-md);
    text-align: center;
  }
}

@media (max-width: 576px) {
  .modern-nav {
    padding: 1rem 0;
  }
  
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  .navbar-brand {
    padding-left: 0.5rem;
  }
  
  .modern-toggler {
    margin-right: 0.5rem;
  }
  
  .page-title {
    font-size: 1.75rem;
  }
  
  .breadcrumb {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.875rem;
  }
}

/* Service Icon Large */
.service-icon-large {
  padding: var(--spacing-xl);
  background: rgba(255, 23, 68, 0.1);
  border-radius: 50%;
  display: inline-block;
  margin: var(--spacing-md) 0;
}

[data-theme="dark"] .service-icon-large {
  background: rgba(255, 23, 68, 0.2);
}

/* ============================================
   Theme Toggle
============================================ */

#theme-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  transition: all var(--transition-normal);
}

#theme-toggle:hover {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
  transform: rotate(180deg);
}

/* ============================================
   Footer
============================================ */

.footer {
  background: var(--dark-black) !important;
  color: var(--white);
  margin-top: var(--spacing-xl);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-red);
  transform: translateX(3px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
}

/* ============================================
   Loading & Animations
============================================ */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  z-index: 1030;
}

.scroll-to-top:hover {
  background: var(--primary-red-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Service Cards
============================================ */

.service-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: var(--spacing-md);
  transition: all var(--transition-normal);
  
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  /* color: var(--accent-blue); */
}

/* ============================================
   Testimonials
============================================ */

.testimonial-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--spacing-lg);
  font-size: 5rem;
  color: var(--primary-red);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-rating {
  color: #FFC107;
  margin-bottom: var(--spacing-sm);
}

.testimonial-author {
  border-top: 1px solid var(--border-color);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-md);
}

/* ============================================
   Utilities
============================================ */

.glass-bg {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-padding {
  padding: var(--spacing-xl) 0;
  background-image: url('read.jpg');
  background-size: cover;          /* Make the image cover the whole area */
  background-position: center;     /* Center the image */
  background-repeat: no-repeat;    /* Don’t repeat */
  background-attachment: fixed;  
}

.compact-section {
  padding: var(--spacing-lg) 0;
}

/* ============================================
   Hero Section Responsive Design
============================================ */

/* Tablet Styles */
@media (max-width: 992px) {
  .hero-content {
    padding-top: 100px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-content {
    padding-top: 80px;
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Background patterns smaller on mobile */
  .hero-slide-1 {
    background-size: 60px 60px, cover;
  }
  
  .hero-slide-2 {
    background-size: 60px 60px, cover;
  }
  
  .hero-slide-3 {
    background-size: 60px 60px, cover;
  }
}

/* Small Mobile Styles */
@media (max-width: 360px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-content {
    min-height: 70vh;
    padding-top: 60px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   General Responsive Design
============================================ */

@media (max-width: 768px) {
  
  .social-float-bar {
    left: 10px;
  }
  
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float,
  .email-float {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .service-card {
    margin-bottom: var(--spacing-lg);
  }
  
  .main-content {
    margin-top: inherit;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 60vh;
  }
  
  .container {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
  }
  
  .social-float-bar {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin: var(--spacing-lg) 0;
  }
}

/* ============================================
   Print Styles
============================================ */

@media print {
  .navbar,
  .footer,
  .social-float-bar,
  .floating-cta,
  .scroll-to-top {
    display: none !important;
  }
  
  .main-content {
    margin-top: 0;
  }
  
  * {
    color: #000 !important;
    background: #fff !important;
  }
}

/* ============================================
   Process Section Styles
============================================ */

.process-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-icon-wrapper {
  position: relative;
}

.process-icon {
  border: 3px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.process-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process-card:hover .process-icon::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}

.process-step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--accent-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 3;
  border: 2px solid var(--bg-primary);
}

.process-features {
  margin-top: 1rem;
}

.process-features small {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Process Connection Line */
.process-line {
  position: absolute;
  top: 50%;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--primary-red), var(--accent-blue));
  z-index: 1;
  border-radius: 2px;
}

.process-line::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  bottom: -4px;
  background: linear-gradient(to right, 
    rgba(255, 23, 68, 0.1), 
    rgba(33, 150, 243, 0.1)
  );
  border-radius: 6px;
}

/* Mobile Timeline */
.process-timeline {
  position: relative;
  margin-top: 2rem;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-red), var(--accent-blue));
  transform: translateX(-50%);
}

/* Dark Theme Adjustments */
[data-theme="dark"] .process-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .process-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-red);
}

[data-theme="dark"] .process-step-number {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .process-card {
    margin-bottom: 2rem;
  }
  
  .process-icon-wrapper {
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 767.98px) {
  .process-card {
    padding: 1.5rem 1rem;
  }
  
  .process-icon {
    width: 70px !important;
    height: 70px !important;
    font-size: 1.8rem !important;
  }
  
  .process-step-number {
    width: 25px;
    height: 25px;
    font-size: 0.7rem;
  }
}

/* Animation Keyframes */
@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* ============================================
   Packages & Pricing Page Styles
============================================ */

/* Package Hero Section */
.packages-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../images/about2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.packages-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.6) 0%, 
    rgba(66, 66, 66, 0.4) 50%, 
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.packages-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.packages-hero .container,
.packages-hero .hero-content {
  position: relative;
  z-index: 3;
}

.packages-hero .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

.packages-hero .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
}

.packages-hero .btn {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.packages-hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.packages-hero .btn-primary {
  background: linear-gradient(135deg, #ff1744, #e91e63);
  color: white;
}

.packages-hero .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: white;
  background: transparent;
}

.packages-hero .btn-outline-light:hover {
  background: white;
  border-color: white;
  color: #333;
}

/* Stats Section */
.stats-section {
  background: #f8f9fa !important;
}

.stat-card {
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff1744;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

.packages-hero .hero-stats {
  margin-top: 3rem;
}

.packages-hero .stat-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.packages-hero .stat-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.packages-hero .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.packages-hero .stat-item p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pricing Tables */
.pricing-table-wrapper {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.pricing-table-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-table {
  margin: 0;
  font-size: 0.95rem;
}

.pricing-table thead {
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  color: white;
}

.pricing-table thead th {
  border: none;
  padding: 1.5rem 1rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-table thead th:last-child {
  border-right: none;
}

.pricing-table tbody tr {
  transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
  background: rgba(255, 23, 68, 0.05);
  transform: scale(1.01);
}

.package-row {
  border-bottom: 1px solid var(--border-color);
}

.package-row.featured-package {
  background: linear-gradient(90deg, 
    rgba(255, 23, 68, 0.08), 
    rgba(255, 23, 68, 0.04), 
    rgba(255, 23, 68, 0.08)
  );
  border-left: 4px solid var(--primary-red);
}

.package-name {
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  padding: 1.5rem 1rem;
  vertical-align: middle;
}

.package-desc {
  color: var(--text-secondary);
  padding: 1.5rem 1rem;
  line-height: 1.5;
  vertical-align: middle;
}

.price-cell {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-red);
  text-align: center;
  padding: 1.5rem 1rem;
  vertical-align: middle;
}

.price-col {
  width: 15%;
  text-align: center;
}

/* Package Badges */
.package-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 0.5rem;
  position: relative;
  top: -2px;
}

.package-badge.popular {
  background: linear-gradient(135deg, #FFC107, #FF8F00);
  color: white;
  box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.package-badge.premium {
  background: linear-gradient(135deg, #9C27B0, #673AB7);
  color: white;
  box-shadow: 0 2px 10px rgba(156, 39, 176, 0.3);
}

/* Pricing Cards (for PPF Section) */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent
  );
  transition: left 0.8s ease;
}

.pricing-card:hover::before {
  left: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.pricing-card.featured {
  border-color: var(--primary-red);
  background: linear-gradient(135deg, 
    rgba(255, 23, 68, 0.05), 
    rgba(255, 23, 68, 0.02)
  );
}

.pricing-card.premium {
  border-color: var(--accent-purple);
  background: linear-gradient(135deg, 
    rgba(156, 39, 176, 0.05), 
    rgba(156, 39, 176, 0.02)
  );
}

.pricing-card-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-card-header p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.pricing-card-price {
  margin-top: 1rem;
}

.price-from {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
  display: block;
}

.price-range {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
}

.badge-popular {
  background: linear-gradient(135deg, #FFC107, #FF8F00);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-block;
}

.badge-premium {
  background: linear-gradient(135deg, #9C27B0, #673AB7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-block;
}

/* Coating Note */
.coating-note {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #FFC107;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.coating-note p {
  margin: 0.5rem 0;
  color: var(--text-primary);
}

/* Add-Ons Grid */
.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.add-on-item {
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.add-on-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-red);
}

.add-on-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.add-on-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.add-on-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-red);
  margin: 0;
}

/* New Add-On Card Styles */
.add-on-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.add-on-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.add-on-card .add-on-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0 0 1.5rem 0;
}

.add-on-card .add-on-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.add-on-card .add-on-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-red);
  margin: 0;
}

/* Fleet Services Section */
.fleet-content {
  padding: 2rem 0;
}

.fleet-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.fleet-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.1rem;
}

.fleet-features li:last-child {
  border-bottom: none;
}

.fleet-cta {
  margin-top: 2rem;
}

.fleet-note {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Fleet Stats */
.fleet-image {
  position: relative;
  padding: 2rem;
}

.fleet-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-red);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  /* background: linear-gradient(135deg, 
    rgba(255, 23, 68, 0.9), 
    rgba(156, 39, 176, 0.9)
  ); */
  padding: 4rem 0;
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.cta-description {
  font-size: 1.2rem;
  opacity: 0.9;
}

.cta-buttons .btn {
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Section Headers */
.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Info Cards & Feature Lists */
.info-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}

.info-title {
  color: var(--primary-red);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-section {
  background: #f8f9fa !important;
}

.why-choose-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.why-choose-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.why-choose-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.boss-tagline {
  background: linear-gradient(135deg, var(--primary-red), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary-red);
  margin-top: 2rem;
}

.boss-tagline h4 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Dark Theme Adjustments */
[data-theme="dark"] .pricing-table-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .add-on-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .stat-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .coating-note {
  background: rgba(255, 193, 7, 0.2);
  color: var(--text-primary);
}

[data-theme="dark"] .info-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .why-choose-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .why-choose-section {
  background: var(--bg-secondary) !important;
}

[data-theme="dark"] .boss-tagline {
  border-color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .fleet-stats {
    gap: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .packages-hero {
    min-height: 50vh;
    background-attachment: scroll;
  }
  
  .packages-hero .hero-title {
    font-size: 2.2rem;
  }
  
  .packages-hero .hero-subtitle {
    font-size: 1rem;
  }
  
  .packages-hero .btn {
    font-size: 0.9rem;
    padding: 10px 25px;
    margin: 0.5rem 0;
    display: block;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
  }
}
  
  .pricing-table {
    font-size: 0.85rem;
  }
  
  .pricing-table thead th,
  .package-name,
  .package-desc,
  .price-cell {
    padding: 1rem 0.5rem;
  }
  
  .price-col {
    width: 20%;
  }
  
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .add-ons-grid {
    grid-template-columns: 1fr;
  }
  
  .add-on-item {
    flex-direction: column;
    text-align: center;
  }
  
  .add-on-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons .btn {
    display: block;
    margin: 0.5rem 0;
    width: 100%;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .fleet-stats {
    grid-template-columns: repeat(2, 1fr);
  }


@media (max-width: 576px) {
  .table-responsive {
    font-size: 0.8rem;
  }
  
  .package-badge {
    display: block;
    margin: 0.5rem 0;
    text-align: center;
  }
  
  .fleet-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
}

/* ============================================
   WHY CHOOSE US SECTION STYLES
============================================ */

.modern-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  overflow: hidden;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.icon-wrapper {
  transition: transform 0.3s ease;
}

.modern-card:hover .icon-wrapper {
  transform: scale(1.1);
}

/* Responsive adjustments for Why Choose Us section */
@media (max-width: 768px) {
  .icon-wrapper {
    width: 60px !important;
    height: 60px !important;
  }
  
  .icon-wrapper i {
    font-size: 1.5rem !important;
  }
  
  .modern-card .card-body {
    padding: 2rem 1.5rem !important;
  }
  
  .modern-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .icon-wrapper {
    width: 50px !important;
    height: 50px !important;
  }
  
  .icon-wrapper i {
    font-size: 1.2rem !important;
  }
  
  .modern-card .card-body {
    padding: 1.5rem 1rem !important;
  }
  
  .modern-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem !important;
  }
  
  .modern-card p {
    font-size: 0.9rem;
  }
}

/* Map Container Styles */
.map-container {
    position: relative;
    width: 100%;
    min-height: 450px;
    background: #f8f9fa;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}