/* Millennium MOT Centre - Modern Blue Theme Styles */

/* CSS Variables - Blue Only Palette */
:root {
  /* Primary Blues */
  --primary-color: #003478;
  --primary-dark: #002657;
  --primary-light: #004a9e;
  
  /* Secondary Blues */
  --secondary-color: #1d3557;
  --secondary-light: #457b9d;
  --secondary-lighter: #6ba3c7;
  
  /* Accent Blues */
  --accent-color: #1e88e5;
  --accent-light: #64b5f6;
  --accent-dark: #1565c0;
  
  /* Ford Blue Blend */
  --ford-blue: #003478;
  --ford-blue-light: #0052a5;
  
  /* Neutral Colors */
  --light-color: #f0f7ff;
  --white: #ffffff;
  --dark: #0a1628;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  
  /* Surface & Background Colors */
  --surface: #ffffff;
  --bg: #f8fafc;
  --border: #e2e8f0;
  
  /* Text Colors */
  --text: #1e293b;
  --text-light: #64748b;
  
  /* Primary Alias */
  --primary: #003478;
  
  /* Shadows */
  --shadow: 0 10px 40px rgba(0, 52, 120, 0.15);
  --shadow-lg: 0 25px 80px rgba(0, 52, 120, 0.2);
  --shadow-glow: 0 0 40px rgba(30, 136, 229, 0.3);
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  
  /* Border Radius */
  --border-radius: 20px;
  --border-radius-sm: 10px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--secondary-color);
  background: var(--white);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
  border-radius: 5px;
}

/* Selection Color */
::selection {
  background: var(--primary-color);
  color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p { margin-bottom: 1rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 1rem auto 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 52, 120, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 52, 120, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  box-shadow: var(--shadow);
  border-bottom: 3px solid #003478;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.navbar.scrolled .logo {
  color: var(--primary-color);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 52, 120, 0.3);
}

.logo-image {
  height: 100px;
  width: auto;
  border-radius: 8px;
}

.navbar.scrolled .logo-image {
  height: 75px;
}

@media (max-width: 768px) {
  .logo-image {
    height: 90px;
  }

  .navbar.scrolled .logo-image {
    height: 70px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.navbar.scrolled .nav-link {
  color: var(--secondary-color);
}

.navbar.scrolled .nav-link-cta {
  background: #003478;
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.navbar.scrolled .nav-link-cta:hover {
  background: #002357;
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
/* ============================================
   HERO SECTION - PROFESSIONAL DESIGN
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #002657 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Smaller Hero for Inner Pages */
.hero-sm {
  min-height: auto;
  padding: 150px 0 50px;
}

.hero-sm .hero-grid {
  gap: 40px;
}

.hero-sm .hero-cards {
  gap: 12px;
}

.hero-sm .hero-card {
  padding: 16px 20px;
}

.hero-sm .hero-card .card-icon {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.hero-sm .hero-card h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-sm .hero-card p {
  font-size: 0.75rem;
}

.hero-sm .hero-trust {
  display: none;
}

.hero-sm .hero-stats-bar {
  display: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(30, 136, 229, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 52, 120, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

/* Hero Canvas Animation */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L50 100M0 50L100 50' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-content {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 136, 229, 0.15);
  border: 1px solid rgba(30, 136, 229, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64b5f6;
  margin-top: 20px;
}

.hero-tag i {
  font-size: 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #1e88e5, #64b5f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  max-width: 540px;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 20px rgba(30, 136, 229, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 136, 229, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Trust Indicators */
.hero-trust {
  display: flex;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(30, 136, 229, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64b5f6;
  font-size: 1.1rem;
}

.trust-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.trust-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* Hero Cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-card:hover {
  transform: translateX(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.card-primary .card-icon {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: var(--white);
}

.card-secondary .card-icon {
  background: linear-gradient(135deg, #0d47a1, #002657);
  color: var(--white);
}

.card-accent .card-icon {
  background: linear-gradient(135deg, #ffc107, #ff8f00);
  color: #1a1a1a;
}

.hero-card .card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-card .card-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.hero-card .card-price {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #64b5f6;
  margin-top: 4px;
}

.hero-card .card-rating {
  display: flex;
  gap: 2px;
  margin-top: 6px;
}

.hero-card .card-rating i {
  color: #ffc107;
  font-size: 0.8rem;
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-plus {
  color: #1e88e5;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .hero-card {
    flex: 1 1 280px;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 130px 0 60px;
    min-height: auto;
  }
  
  .hero-tag {
    font-size: 0.7rem;
    padding: 6px 12px;
    margin-bottom: 16px;
    margin-top: 10px;
  }
  
  .hero-tag i {
    font-size: 0.8rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }
  
  .btn-lg {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  /* Hide trust indicators on mobile */
  .hero-trust {
    display: none;
  }
  
  /* Hide hero cards on mobile */
  .hero-cards {
    display: none;
  }
  
  /* Ensure inner page hero cards are also hidden on mobile */
  .hero-sm .hero-cards {
    display: none;
  }
  
  /* Inner page hero mobile optimization */
  .hero-sm {
    padding: 120px 0 80px;
    min-height: 45vh;
  }
  
  .hero-stats-bar {
    flex-wrap: nowrap;
    gap: 0;
    padding: 14px 20px;
    margin-top: 20px;
    justify-content: center;
  }
  
  .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 15px;
  }
  
  .stat-box {
    flex: 1;
    min-width: auto;
  }
  
  /* Hide 3rd stat, 3rd divider, 4th stat */
  .hero-stats-bar > *:nth-child(n+5) {
    display: none;
  }
  
  .stat-number {
    font-size: 1.4rem;
    margin-bottom: 2px;
  }
  
  .stat-label {
    font-size: 0.65rem;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 80px;
  }

  .navbar.scrolled .logo-image {
    height: 60px;
  }

  .hero {
    padding: 110px 0 40px;
  }
  
  /* Inner page hero - smaller padding on very small screens */
  .hero-sm {
    padding: 100px 0 60px;
    min-height: 40vh;
  }
  
  .hero-tag {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .btn-lg {
    padding: 11px 18px;
    font-size: 0.9rem;
  }
  
  .hero-stats-bar {
    padding: 14px;
    gap: 12px 8px;
  }
  
  .stat-box {
    flex: 1 1 100%;
    padding: 6px 0;
  }
  
  .stat-number {
    font-size: 1.35rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge span {
  color: var(--accent-light);
  font-weight: 700;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 25px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 35px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Hero Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--secondary-light), var(--accent-dark));
  bottom: -50px;
  right: 20%;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--accent-light), var(--secondary-lighter));
  top: 50%;
  right: 30%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Particle Container */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Services Section */
.services {
  background: var(--light-color);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 35px;
  text-align: left;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 52, 120, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid #e2e8f0;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  border-radius: 12px 0 0 12px;
}

.service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 52, 120, 0.1);
  border-color: var(--primary-color);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 0 24px 0;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.service-card h3 {
  margin: 0 0 12px 0;
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.service-card > p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-link {
  color: var(--white);
  background: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 0.95rem;
  margin-top: auto;
}

.service-link:hover {
  background: var(--accent-dark);
}



/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--light-color) 0%, transparent 70%);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.about-image-main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 52, 120, 0.1), transparent);
  pointer-events: none;
}

.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.about-image-main:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-dark));
  color: var(--white);
  padding: 25px 35px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  animation: pulse 2s ease-in-out infinite;
}

.about-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge .text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-content h2 {
  margin-bottom: 25px;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--light-color);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-text {
  font-weight: 600;
  color: var(--secondary-color);
}

.about-note {
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(0, 52, 120, 0.1));
  padding: 15px 20px;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--primary-color);
  color: var(--secondary-color) !important;
  margin-bottom: 20px !important;
}

.about-note i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose {
  background: var(--light-color);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-choose-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 52, 120, 0.15);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.why-icon i {
  font-size: 2rem;
  color: var(--white);
}

.why-choose-card h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.why-choose-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Reviews Section */
.reviews {
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--light-color);
  padding: 35px;
  border-radius: var(--border-radius);
  position: relative;
}

.review-stars {
  margin-bottom: 20px;
}

.review-stars i {
  color: #ffc107;
  font-size: 1.1rem;
  margin-right: 3px;
}

.review-text {
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 3px;
}

.author-info span {
  color: var(--gray);
  font-size: 0.9rem;
}

.reviews-cta {
  text-align: center;
  margin-top: 20px;
}

/* Mission Section */
.mission {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.mission .section-header h2 {
  color: var(--white);
}

.mission .section-header h2::after {
  background: linear-gradient(90deg, var(--accent-light), var(--accent-color));
}

.mission .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.mission-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.mission-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mission-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(30, 136, 229, 0.3);
}

.mission-card h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-dark));
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Contact Section */
.contact {
  background: var(--light-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--gray);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, #0d1f35 100%);
  color: var(--white);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
  transform: translateY(-3px);
}

.footer-links h4,
.footer-hours h4 {
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary-color) 50%, var(--primary-dark) 100%);
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  color: var(--white);
  position: relative;
  z-index: 2;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 15px auto 0;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

.breadcrumb span {
  color: var(--accent-light);
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 52, 120, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  padding: 8px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-light);
}

.pricing-header h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 12px 0;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: 700;
}

/* Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 35px;
  box-shadow: 0 5px 30px rgba(0, 52, 120, 0.05);
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-card h3 i {
  color: var(--primary-color);
}

.info-card p {
  color: var(--gray);
  margin: 0;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-light));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Cursor Follower */
.cursor-follower {
  width: 30px;
  height: 30px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower.hover {
  width: 50px;
  height: 50px;
  background: rgba(30, 136, 229, 0.1);
}

/* Loading Animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

/* Ripple Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Glitch Effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 2s infinite linear alternate-reverse;
  color: var(--accent-light);
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 3s infinite linear alternate-reverse;
  color: var(--secondary-lighter);
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 100% { clip-path: inset(0 0 95% 0); transform: translate(-2px, 2px); }
  20% { clip-path: inset(30% 0 50% 0); transform: translate(2px, -2px); }
  40% { clip-path: inset(70% 0 10% 0); transform: translate(-2px, 2px); }
  60% { clip-path: inset(10% 0 80% 0); transform: translate(2px, -2px); }
  80% { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
  0%, 100% { clip-path: inset(95% 0 0 0); transform: translate(2px, -2px); }
  20% { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 2px); }
  40% { clip-path: inset(10% 0 70% 0); transform: translate(2px, -2px); }
  60% { clip-path: inset(80% 0 10% 0); transform: translate(-2px, 2px); }
  80% { clip-path: inset(30% 0 50% 0); transform: translate(2px, -2px); }
}

/* Text Typing Animation */
.typing-text {
  overflow: hidden;
  border-right: 3px solid var(--accent-color);
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--accent-color); }
}

/* Floating Animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Scale Animation on Scroll */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease-out;
}

.scale-in.active {
  opacity: 1;
  transform: scale(1);
}

/* Rotate Animation */
.rotate-slow {
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-badge {
    bottom: 20px;
    right: 20px;
  }
  
  .mission-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.nav-menu .nav-link i {
  display: none;
}

@media (max-width: 768px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 30px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .hours-item {
    flex-direction: column;
    gap: 5px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .cursor-follower {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   BULLET LIST STYLES
   ============================================ */

/* Simple clean bullet list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.check-list li {
  position: relative;
  padding-left: 0;
  margin-bottom: 14px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.check-list li:last-child {
  border-bottom: none;
}

/* Check List White (for dark backgrounds) */
.check-list-white li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Info List with Icons */
.info-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.info-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #475569;
  line-height: 1.6;
}

.info-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  text-align: center;
}

.info-list li i.fa-check {
  color: #22c55e;
}

.info-list li i.fa-info-circle {
  color: #3b82f6;
}

.info-list li i.fa-exclamation-triangle {
  color: #f59e0b;
}

.info-list li i.fa-times {
  color: #ef4444;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-item i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e88e5, #003478);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

.feature-item span {
  color: #1e293b;
  font-weight: 500;
}

/* Card Grid - Better responsive grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: rgba(30, 136, 229, 0.15);
  color: #1e88e5;
  border: 1px solid rgba(30, 136, 229, 0.3);
}

.badge-success {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Info Card */
.info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 52, 120, 0.1);
}

.info-card h3 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.info-card h3 i {
  display: block;
  margin: 0 auto 12px;
  font-size: 2rem;
  color: var(--primary-color);
}

.info-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   GARAGE-THEMED ANIMATIONS & TOOLS
   ============================================ */

/* Floating Tools Container */
.floating-tools {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Tool Icons Base */
.tool-icon {
  position: absolute;
  opacity: 0.1;
  color: var(--primary-color);
  font-size: 3rem;
  animation: float-tool 15s ease-in-out infinite;
}

.tool-icon:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.tool-icon:nth-child(2) {
  top: 20%;
  right: 10%;
  animation-delay: 2s;
  animation-duration: 20s;
}

.tool-icon:nth-child(3) {
  top: 60%;
  left: 8%;
  animation-delay: 4s;
  animation-duration: 16s;
}

.tool-icon:nth-child(4) {
  top: 75%;
  right: 5%;
  animation-delay: 6s;
  animation-duration: 22s;
}

.tool-icon:nth-child(5) {
  top: 40%;
  left: 15%;
  animation-delay: 1s;
  animation-duration: 19s;
}

.tool-icon:nth-child(6) {
  top: 85%;
  left: 20%;
  animation-delay: 3s;
  animation-duration: 17s;
}

.tool-icon:nth-child(7) {
  top: 30%;
  right: 15%;
  animation-delay: 5s;
  animation-duration: 21s;
}

.tool-icon:nth-child(8) {
  top: 50%;
  right: 8%;
  animation-delay: 7s;
  animation-duration: 18s;
}

@keyframes float-tool {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(15deg);
  }
  50% {
    transform: translateY(-15px) rotate(-10deg);
  }
  75% {
    transform: translateY(-25px) rotate(5deg);
  }
}

/* Rotating Gears */
.gear-container {
  position: absolute;
  pointer-events: none;
}

.gear {
  position: relative;
  width: 120px;
  height: 120px;
}

.gear svg {
  width: 100%;
  height: 100%;
  animation: rotate-gear 20s linear infinite;
}

.gear.reverse svg {
  animation-direction: reverse;
}

.gear-small {
  width: 80px;
  height: 80px;
}

.gear-large {
  width: 180px;
  height: 180px;
}

@keyframes rotate-gear {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Animated Wrench */
.wrench-animated {
  display: inline-block;
  animation: wrench-turn 2s ease-in-out infinite;
}

@keyframes wrench-turn {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

/* Pulsing Tool Icon */
.tool-pulse {
  animation: tool-pulse 2s ease-in-out infinite;
}

@keyframes tool-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Service Card Tool Enhancement */
.service-card .service-icon {
  position: relative;
  overflow: hidden;
}

.service-card .service-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  animation: icon-shine 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .service-icon::before {
  opacity: 1;
}

@keyframes icon-shine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Tool Icon Styles */
.service-icon-tool {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px 0;
  background: var(--primary-color);
  border-radius: 12px;
  flex-shrink: 0;
}

.service-icon-tool i {
  font-size: 1.5rem;
  color: var(--white);
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Car Silhouette Decorations */
.car-decoration {
  position: absolute;
  opacity: 0.05;
  color: var(--primary-color);
  font-size: 15rem;
  z-index: 0;
}

/* Animated Tool Belt */
.tool-belt {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 30px 0;
}

.tool-belt-item {
  width: 60px;
  height: 60px;
  background: var(--light-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: var(--transition);
  cursor: pointer;
}

.tool-belt-item:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-10px) rotate(10deg);
  box-shadow: 0 10px 30px rgba(0, 52, 120, 0.3);
}

/* Mechanic Badge */
.mechanic-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0, 52, 120, 0.3);
}

.mechanic-badge i {
  animation: tool-pulse 2s ease-in-out infinite;
}

/* Garage Door Effect */
.garage-door {
  position: relative;
  overflow: hidden;
}

.garage-door::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(0, 52, 120, 0.03) 40px,
    rgba(0, 52, 120, 0.03) 42px
  );
  pointer-events: none;
}

/* Oil Drop Animation */
.oil-drop {
  position: relative;
}

.oil-drop::after {
  content: '💧';
  position: absolute;
  font-size: 1.5rem;
  animation: oil-drip 3s ease-in-out infinite;
  opacity: 0;
}

@keyframes oil-drip {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}

/* Spark Animation for Tools */
.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: spark-fly 1s ease-out infinite;
}

@keyframes spark-fly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--spark-x, 20px), var(--spark-y, -20px)) scale(0);
    opacity: 0;
  }
}

/* Engine Particles */
.engine-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-100px) translateX(50px);
  }
  50% {
    transform: translateY(-50px) translateX(-30px);
  }
  75% {
    transform: translateY(-150px) translateX(20px);
  }
}

/* Diagnostic Screen Effect */
.diagnostic-screen {
  background: linear-gradient(135deg, var(--dark), var(--secondary-color));
  border: 3px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.diagnostic-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: screen-scan 3s linear infinite;
}

@keyframes screen-scan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Tool Shadow */
.tool-shadow {
  filter: drop-shadow(0 10px 20px rgba(0, 52, 120, 0.3));
  transition: var(--transition);
}

.tool-shadow:hover {
  filter: drop-shadow(0 15px 30px rgba(0, 52, 120, 0.4));
}

/* Magnetic Button Effect */
.magnetic-btn {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic-btn:hover {
  transform: translateY(-3px);
}

/* Mechanic Badge Enhancement */
.mechanic-badge {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.mechanic-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: badge-shine 3s linear infinite;
}

@keyframes badge-shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Wrench Animation */
.wrench-animated {
  animation: wrench-swing 2s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes wrench-swing {
  0%, 100% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
}

/* Hero Section with Tools */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Responsive Adjustments for Tools */
@media (max-width: 768px) {
  .tool-icon {
    font-size: 2rem;
  }
  
  .gear {
    width: 80px;
    height: 80px;
  }
  
  .gear-large {
    width: 120px;
    height: 120px;
  }
  
  .tool-belt {
    flex-wrap: wrap;
  }
  
  .car-decoration {
    font-size: 8rem;
  }
  
  .gear-container {
    display: none;
  }
  
  /* Fix overlapping cards on mobile */
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   PREMIUM GLASSMORPHISM MOBILE NAVIGATION MENU
   ============================================ */

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 3px 0;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55),
              opacity 0.3s ease,
              width 0.3s ease;
  transform-origin: center;
}

.navbar.scrolled .hamburger span {
  background: var(--primary-color);
}

/* Hamburger Animation to X */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Container - Glassmorphism */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4),
              inset 1px 0 0 rgba(255, 255, 255, 0.05);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Glass glow effect */
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(30, 136, 229, 0.05) 0%, 
    transparent 50%,
    rgba(0, 52, 120, 0.05) 100%);
  pointer-events: none;
}

/* Mobile Menu Header */
.mobile-menu-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.mobile-menu-logo {
  display: none; /* Logo hidden per design requirement */
}

.mobile-menu-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(30, 136, 229, 0.4), 
    transparent);
}

.mobile-menu-logo {
  height: 50px;
  width: auto;
}

.mobile-menu-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.mobile-menu-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Mobile Menu Links */
.mobile-menu-links {
  list-style: none;
  padding: 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-links li {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-links li {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation delays */
.mobile-menu.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-menu-links li:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.mobile-menu-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(30, 136, 229, 0.15), 
    rgba(0, 52, 120, 0.1));
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 12px;
}

.mobile-menu-links a:hover::before,
.mobile-menu-links a:focus::before,
.mobile-menu-links a.active::before {
  opacity: 1;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus {
  color: var(--white);
  transform: translateX(4px);
}

.mobile-menu-links a.active {
  color: var(--white);
  background: rgba(30, 136, 229, 0.1);
}

.mobile-menu-links a i {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  color: var(--accent-color);
  transition: transform 0.25s ease;
  position: relative;
  z-index: 1;
}

.mobile-menu-links a:hover i {
  transform: scale(1.15);
}

.mobile-menu-links a span {
  position: relative;
  z-index: 1;
}

/* CTA Button in Mobile Menu */
.mobile-menu-links .mobile-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-dark));
  color: var(--white) !important;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 52, 120, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mobile-menu-links .mobile-cta:hover {
  box-shadow: 0 6px 20px rgba(0, 52, 120, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.mobile-menu-links .mobile-cta i {
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
  position: relative;
}

.mobile-menu-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(30, 136, 229, 0.3), 
    transparent);
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mobile-menu-contact-item:hover {
  color: var(--white);
}

.mobile-menu-contact-item i {
  width: 20px;
  text-align: center;
  color: var(--accent-color);
}

.mobile-menu-hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-hours-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.mobile-menu-hours-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hamburger span,
  .mobile-menu,
  .mobile-menu-overlay,
  .mobile-menu-links li,
  .mobile-menu-links a,
  .mobile-menu-links a i {
    transition: none !important;
  }
  
  .mobile-menu-links li {
    opacity: 1;
    transform: none;
  }
}

/* Mobile Menu Responsive - Show on mobile only */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
}

/* Slightly larger screens but still mobile */
@media (max-width: 1024px) and (min-width: 769px) {
  .hamburger {
    display: none;
  }
  
  .nav-menu {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
}

/* Focus styles for accessibility */
.hamburger:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
  border-radius: 4px;
}

.mobile-menu-links a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .mobile-menu {
    background: rgba(0, 0, 0, 0.95);
    border-left: 2px solid var(--white);
  }
  
  .mobile-menu-links a {
    border: 1px solid transparent;
  }
  
  .mobile-menu-links a:hover,
  .mobile-menu-links a:focus {
    border-color: var(--white);
  }
}

/* ============================================
   PROFILE PAGE STYLES
   ============================================ */

/* Fix white-on-white text in Booking History section */
#history .contact-form-wrapper .hours-item {
    color: var(--secondary-color);
    border-bottom: 1px dashed var(--gray-light);
}

/* =========================
   Error Pages (404 / Magic Link)
========================= */
.error-page-theme {
  background: #ffffff;
  color: #1d3557;
  min-height: 100vh;
}

.error-page-theme .navbar {
  position: sticky;
  top: 0;
}

.error-page-theme .navbar.scrolled {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 52, 120, 0.12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.error-page-theme .navbar.scrolled .nav-link,
.error-page-theme .navbar.scrolled .mobile-menu-title,
.error-page-theme .navbar.scrolled .mobile-menu-subtitle {
  color: #1d3557;
}

.error-page-theme .navbar.scrolled .nav-link:hover {
  color: #003478;
}

.error-page-theme .navbar.scrolled .hamburger span {
  background: #1d3557;
}

.error-main-wrap {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 7vw, 4.5rem);
}

.error-card {
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.error-card.container {
  background-image: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.error-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 52, 120, 0.2);
  color: #003478;
  background: #f2f7ff;
  border-radius: 999px;
  padding: 0.38rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 1rem;
}

.error-visual {
  margin: 0.75rem 0 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.broken-car {
  font-size: clamp(3rem, 8vw, 5rem);
  color: #1e88e5;
  text-shadow: 0 10px 20px rgba(30, 136, 229, 0.2);
}

.wrench-float {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #003478;
  animation: wrench-bob 1.8s ease-in-out infinite;
}

@keyframes wrench-bob {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(-8deg);
  }
}

.error-card h1 {
  color: #1d3557;
  margin-bottom: 0.85rem;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  letter-spacing: -0.02em;
}

.error-lead {
  margin: 0 auto 1.25rem;
  max-width: 700px;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
}

.error-punchlines {
  display: grid;
  gap: 0.6rem;
  max-width: 700px;
  margin: 0 auto 1.2rem;
  text-align: left;
}

.error-punchlines p {
  margin: 0;
  color: #1d3557;
  background: #f8fbff;
  border: 1px solid #dbe7f5;
  border-radius: 12px;
  padding: 0.72rem 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 52, 120, 0.04);
}

.error-punchlines i {
  color: #1e88e5;
  margin-right: 0.4rem;
}

.error-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.35rem;
}

.error-cta-row .btn {
  min-width: 208px;
}

.error-cta-row .btn-outline {
  border-color: rgba(0, 52, 120, 0.35);
  color: #003478;
}

.error-cta-row .btn-outline:hover {
  background: #d6ebff;
  color: #003478;
}

.magic-link-reason {
  margin: 0 auto 1.3rem;
  max-width: 720px;
  border: 1px solid rgba(159, 210, 255, 0.34);
  border-left: 4px solid #64b5f6;
  background: rgba(6, 26, 56, 0.72);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  text-align: left;
  color: #dcecff;
}

.magic-link-help {
  color: #c1d9f3;
  max-width: 720px;
  margin: 0 auto 1.35rem;
}

.magic-link-form {
  max-width: 640px;
  margin: 0 auto 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

.magic-link-form input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(159, 210, 255, 0.45);
  background: rgba(3, 14, 30, 0.85);
  color: #ffffff;
  padding: 0.82rem 1rem;
}

.magic-link-form input::placeholder {
  color: #97bfe7;
}

.magic-link-form input:focus {
  outline: none;
  border-color: #64b5f6;
  box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.24);
}

@media (max-width: 720px) {
  .error-page-theme .container {
    padding: 0 1rem;
  }

  .magic-link-form {
    grid-template-columns: 1fr;
  }

  .error-cta-row .btn {
    min-width: 0;
    width: 100%;
  }

  .error-ascii {
    font-size: 0.76rem;
  }
}

/* Profile summary sections */
.profile-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

#vehicle-info .section-header h2,
#reminders .section-header h2 {
    color: #003478;
}

#vehicle-info .section-header h2::after,
#reminders .section-header h2::after {
    background: linear-gradient(90deg, #003478, #0d5eb3);
}

.profile-info-card {
    border: 1px solid rgba(0, 52, 120, 0.12);
    box-shadow: 0 10px 30px rgba(0, 52, 120, 0.08);
}

.profile-info-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.profile-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003478, #0d5eb3);
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 52, 120, 0.25);
}

.profile-info-head h3 {
    margin: 0;
    color: #003478;
}

#vehicle-info .hours-item strong,
#reminders .hours-item strong {
    color: #003478;
}

#vehicle-info .contact-form-wrapper p,
#reminders .contact-form-wrapper p {
    color: var(--secondary-color);
}

#history .contact-form-wrapper .hours-item strong {
    color: var(--primary-color);
}

#history .contact-form-wrapper p {
    color: var(--secondary-color);
}

/* Inner page hero cards - show on desktop/tablet only */
@media (min-width: 769px) {
    .hero-sm .hero-cards {
        display: flex;
        flex-direction: column;
    }
}

/* Profile page mobile responsiveness */
@media (max-width: 768px) {
    .profile-hero-content {
        max-width: 100%;
    }
    
    .hero-sm .hero-content {
        text-align: center;
    }
    
    .hero-sm .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-sm .hero-subtitle {
        font-size: 0.95rem;
    }
    
    /* Stack hero CTA buttons on mobile */
    .hero-sm .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-sm .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Booking History section mobile improvements */
    #history .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    #history .hours-item {
        flex-direction: column;
        gap: 8px;
        padding: 12px 0;
    }
    
    /* Account Settings section mobile improvements */
    #account-settings .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    #account-settings .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    #account-settings .hero-cta .btn {
        width: 100%;
    }
    
    /* Section header mobile adjustments */
    #history .section-header,
    #account-settings .section-header {
        padding: 0 16px;
    }

    #vehicle-info .contact-form-wrapper,
    #reminders .contact-form-wrapper {
        padding: 24px 16px;
    }

    #vehicle-info .hours-item,
    #reminders .hours-item {
        flex-direction: column;
        gap: 8px;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .hero-sm {
        padding: 100px 0 60px;
        min-height: 40vh;
    }

    .profile-info-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    .profile-info-head h3 {
        font-size: 1rem;
    }
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

/* Booking Hero Section */
.booking-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary-color) 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.booking-hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.booking-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.booking-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.booking-hero-badge i {
  color: #ffd700;
}

/* Booking Services Section */
.booking-services {
  padding: 80px 0;
  background: var(--bg);
}

.booking-services-header {
  text-align: center;
  margin-bottom: 50px;
}

.booking-services-header h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.booking-services-header p {
  color: var(--gray);
  font-size: 1rem;
}

/* Service Cards Grid */
.booking-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Individual Service Card */
.booking-service-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.booking-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,52,120,0.15);
  border-color: var(--primary-color);
}

.booking-service-card.selected {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(0,52,120,0.05), rgba(30,136,229,0.05));
  box-shadow: 0 10px 30px rgba(0,52,120,0.2);
}

.booking-service-card.selected::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Service Icon */
.booking-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #1e88e5, var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-service-icon i {
  font-size: 2rem;
  color: white;
}

/* Service Content */
.booking-service-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.booking-service-card .service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.booking-service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* Continue Button */
.booking-continue-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 15px 30px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-continue-btn:disabled {
  background: var(--gray-light);
  color: var(--gray);
  cursor: not-allowed;
}

.booking-continue-btn:not(:disabled):hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Booking Form Section */
.booking-form-section {
  padding: 80px 0;
  background: var(--white);
}

/* Progress Steps */
.booking-progress {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.booking-step.active {
  opacity: 1;
}

.booking-step.completed {
  opacity: 1;
}

.booking-step-number {
  width: 40px;
  height: 40px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gray);
  transition: all 0.3s ease;
}

.booking-step.active .booking-step-number {
  background: var(--primary-color);
  color: white;
}

.booking-step.completed .booking-step-number {
  background: #22c55e;
  color: white;
}

.booking-step-label {
  font-weight: 500;
  color: var(--dark);
}

/* Form Container */
.booking-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.booking-form-container h2 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 30px;
  text-align: center;
}

/* Form Fields */
.booking-form-group {
  margin-bottom: 25px;
}

.booking-form-group label {
  display: block;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Form Buttons */
.booking-form-buttons {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 30px;
}

.booking-btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-btn-back {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--dark);
}

.booking-btn-back:hover {
  background: var(--gray-light);
}

.booking-btn-continue {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: white;
}

.booking-btn-continue:disabled {
  background: var(--gray-light);
  border-color: var(--gray-light);
  color: var(--gray);
  cursor: not-allowed;
}

.booking-btn-continue:not(:disabled):hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Booking Summary */
.booking-summary {
  background: var(--bg);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.booking-summary h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.booking-summary-row span:first-child {
  color: var(--gray);
}

.booking-summary-row span:last-child {
  color: var(--dark);
  font-weight: 500;
}

.booking-summary-total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
}

.booking-summary-total span:last-child {
  color: var(--primary-color);
}

/* Responsive Booking */
@media (max-width: 992px) {
  .booking-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .booking-hero h1 {
    font-size: 2rem;
  }
  
  .booking-services-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-progress {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .booking-form-container {
    padding: 25px;
  }
  
  .booking-form-buttons {
    flex-direction: column-reverse;
  }
  
  .booking-btn {
    width: 100%;
  }
}

/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}

/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.35) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
    text-align: center !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}

/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}
/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.35) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
    text-align: center !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}

/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.35) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
    text-align: center !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}

/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}
/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.35) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
    text-align: center !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}



.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}
/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.35) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
    text-align: center !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}

/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.35) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
    text-align: center !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}

/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}
/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.35) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
    text-align: center !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}

/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.35) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
    text-align: center !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}

/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant - visual plate styling only, no sizing overrides */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

/* Force yellow background on autofill - webkit browsers */
.uk-plate-input:-webkit-autofill,
.uk-plate-input:-webkit-autofill:hover,
.uk-plate-input:-webkit-autofill:focus,
.uk-plate-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8b500 inset !important;
    -webkit-text-fill-color: #000 !important;
    border: 3px solid #000 !important;
}

/* Force yellow background on autofill - Mozilla */
.uk-plate-input:-moz-autofill,
.uk-plate-input:-moz-autofill-preview {
    filter: none;
    background: #f8b500 !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.4), 0 2px 4px rgba(0,0,0,0.2) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}
/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.35) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
    text-align: center !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}



.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}
/* ============================================
   UK REGISTRATION PLATE STYLING
   ============================================ */

/* Base UK plate style - Yellow (rear plate) */
.uk-plate {
    background: #f8b500;
    color: #000;
    border: 3px solid #000;
    border-radius: 8px;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    max-width: 280px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Front plate variant (white background) */
.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.35) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
    text-align: center !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}



.uk-plate.uk-plate-front {
    background: #fff;
}

/* Input field variant */
.uk-plate-input {
    background: #f8b500 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    font-family: 'Arial Black', 'Impact', 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.uk-plate-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.35) !important;
}

.uk-plate-input::placeholder {
    color: #333 !important;
    opacity: 0.6 !important;
    text-align: center !important;
}

/* Compact variant for tables and small spaces */
.uk-plate-compact {
    background: #f8b500;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    display: inline-block;
    text-align: center;
}


