/* Override Breakdance free version element hider - Added 2026-01-29 14:14:58 */
.breakdance-free-version-frontend-element-hider,
.breakdance-free-version-frontend-element-hider * {
  display: revert !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
  position: static !important;
  clip: auto !important;
  clip-path: none !important;
  animation: none !important;
  animation-name: none !important;
  filter: none !important;
}

.breakdance-free-version-frontend-element-hider .bde-section,
.breakdance-free-version-frontend-element-hider .bde-code-block {
  display: block !important;
}

@keyframes breakdance_free_version_hide_pro_element {
  from { opacity: 1 !important; filter: none !important; }
  to { opacity: 1 !important; filter: none !important; }
}
/* End Breakdance override */

/* Easy Motors Global Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Primary Colors */
  --em-primary: #2094f3;
  --em-primary-light: #4dacf7;
  --em-primary-dark: #1a7ad4;
  --em-primary-rgb: 32, 148, 243;
  
  /* Text Colors */
  --em-text-dark: #1a2942;
  --em-text-body: #4a5568;
  --em-text-muted: #737b8c;
  --em-text-white: #ffffff;
  
  /* Background Colors */
  --em-bg-white: #ffffff;
  --em-bg-light: #f8fafc;
  --em-bg-section: #fbfcfd;
  --em-bg-dark: #1a2942;
  --em-bg-navy: #0f1b2d;
  
  /* CTA Colors */
  --em-green: #25D366;
  --em-green-dark: #20BA59;
  --em-red: #dc3545;
  --em-red-dark: #c82333;
  --em-orange: #f59e0b;
  
  /* Layout */
  --em-radius: 0.5rem;
  --em-radius-lg: 1rem;
  --em-radius-xl: 1.5rem;
  --em-max-width: 1280px;
  
  /* Shadows */
  --em-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --em-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --em-shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --em-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --em-shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  
  /* Gradients */
  --em-gradient-primary: linear-gradient(135deg, #2094f3, #4dacf7);
  --em-gradient-dark: linear-gradient(135deg, #1a2942, #2d4a6a);
  --em-gradient-hero-overlay: linear-gradient(135deg, rgba(15,27,45,0.85), rgba(26,41,66,0.75));
  
  /* Transitions */
  --em-transition: all 0.3s ease;
  --em-transition-fast: all 0.15s ease;
}

/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--em-text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--em-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

/* Utility Classes */
.em-container {
  max-width: var(--em-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.em-section {
  padding: 5rem 0;
}

.em-section-light {
  background-color: var(--em-bg-section);
}

.em-section-dark {
  background-color: var(--em-bg-dark);
  color: var(--em-text-white);
}

/* Button Styles */
.em-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  border-radius: var(--em-radius);
  border: none;
  cursor: pointer;
  transition: var(--em-transition);
  text-decoration: none;
}

.em-btn-primary {
  background: var(--em-gradient-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(32, 148, 243, 0.4);
}

.em-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 148, 243, 0.5);
  color: white;
}

.em-btn-red {
  background: var(--em-red);
  color: white;
  box-shadow: 0 4px 14px rgba(220, 53, 69, 0.4);
}

.em-btn-red:hover {
  background: var(--em-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
  color: white;
}

.em-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.em-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.em-btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Card Styles */
.em-card {
  background: white;
  border-radius: var(--em-radius-lg);
  box-shadow: var(--em-shadow);
  overflow: hidden;
  transition: var(--em-transition);
}

.em-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--em-shadow-xl);
}

/* Badge Styles */
.em-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
}

.em-badge-green {
  background: rgba(37, 211, 102, 0.1);
  color: #16a34a;
}

.em-badge-blue {
  background: rgba(32, 148, 243, 0.1);
  color: var(--em-primary);
}

.em-badge-red {
  background: rgba(220, 53, 69, 0.1);
  color: var(--em-red);
}

/* Form Styles */
.em-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--em-radius);
  font-size: 0.875rem;
  transition: var(--em-transition-fast);
  background: white;
  color: var(--em-text-dark);
}

.em-input:focus {
  outline: none;
  border-color: var(--em-primary);
  box-shadow: 0 0 0 3px rgba(32, 148, 243, 0.1);
}

.em-input-dark {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}

.em-input-dark::placeholder {
  color: rgba(255,255,255,0.5);
}

.em-input-dark:focus {
  border-color: var(--em-primary);
  background: rgba(255,255,255,0.15);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.em-animate-fade-up {
  animation: fadeInUp 0.6s ease-out;
}

.em-animate-fade {
  animation: fadeIn 0.4s ease-out;
}

/* WhatsApp Button */
.em-whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: var(--em-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--em-transition);
  text-decoration: none;
}

.em-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.em-whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Cookie Consent */
.em-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.em-cookie-banner.em-visible {
  transform: translateY(0);
}

.em-cookie-inner {
  max-width: var(--em-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.em-cookie-text {
  flex: 1;
  min-width: 300px;
}

.em-cookie-text h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.em-cookie-text p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--em-text-muted);
}

.em-cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Exit Intent Popup */
.em-exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.em-exit-overlay.em-visible {
  display: flex;
}

.em-exit-popup {
  background: white;
  border-radius: var(--em-radius-xl);
  max-width: 500px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  animation: fadeInUp 0.4s ease-out;
}

.em-exit-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--em-text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--em-transition-fast);
}

.em-exit-close:hover {
  background: #f1f5f9;
  color: var(--em-text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .em-section {
    padding: 3rem 0;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  .em-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .em-cookie-actions {
    justify-content: center;
    width: 100%;
  }
}

/* Hide admin bar gap on frontend */
html {
  margin-top: 0 !important;
}

#wpadminbar {
  display: none !important;
}