/* Veero Auto Group - Sell Your Car CSS */
/* Self-contained, no Bootstrap dependencies */

/* Color Palette */
:root {
  --veero-royal: #1e3a8a;
  --twilight-plum: #503c7b;
  --midwest-slate: #475569;
  --prairie-white: #f8fafc;
  --trustworthy-green: #16a34a;
  --country-silver: #94a3b8;
  --harvest-gold: #f59e0b;
  --alert-red: #dc2626;
  --sky-blue: #3b82f6;
}

/* Reset and base styles for our container only */
.sell-your-car-container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--midwest-slate);
  box-sizing: border-box;
}

.sell-your-car-container *,
.sell-your-car-container *::before,
.sell-your-car-container *::after {
  box-sizing: border-box;
}

/* Common wrapper styles */
.sell-your-car-hero-wrapper,
.sell-your-car-kbb-wrapper,
.sell-your-car-why-choose-wrapper,
.sell-your-car-process-wrapper,
.sell-your-car-contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.sell-your-car-hero-section {
  background: linear-gradient(135deg, var(--prairie-white) 0%, #e2e8f0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.sell-your-car-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--twilight-plum), var(--veero-royal));
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.sell-your-car-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sell-your-car-hero-content {
  position: relative;
  z-index: 2;
}

.sell-your-car-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--veero-royal);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.sell-your-car-hero-subtitle {
  font-size: 1.25rem;
  color: var(--midwest-slate);
  margin: 0 0 2rem 0;
  font-weight: 400;
}

/* Emphasis Banners */
.sell-your-car-emphasis-banners {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2rem 0;
}

.sell-your-car-emphasis-banner {
  background: linear-gradient(135deg, var(--harvest-gold), #f97316);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  animation: sell-your-car-pulse 2s infinite;
}

.sell-your-car-emphasis-banner i {
  font-size: 1.1rem;
}

.sell-your-car-hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sell-your-car-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--twilight-plum);
}

.sell-your-car-benefit-item i {
  font-size: 1.25rem;
  color: var(--harvest-gold);
  min-width: 20px;
}

.sell-your-car-hero-image {
  position: relative;
  z-index: 2;
}

.sell-your-car-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(80, 60, 123, 0.15);
  border: 3px solid var(--twilight-plum);
}

/* KBB Section */
.sell-your-car-kbb-section {
  padding: 80px 0;
  background: var(--prairie-white);
}

.sell-your-car-kbb-widget-container {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.1);
  border: 2px solid var(--twilight-plum);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.sell-your-car-kbb-widget-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--twilight-plum), var(--harvest-gold), var(--veero-royal));
}

.sell-your-car-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.sell-your-car-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--veero-royal);
  margin: 0 0 1rem 0;
}

.sell-your-car-section-subtitle {
  font-size: 1.125rem;
  color: var(--midwest-slate);
  margin: 0;
}

.sell-your-car-no-purchase-note {
  color: var(--harvest-gold);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* KBB Placeholder Styling */
.sell-your-car-kbb-placeholder {
  background: linear-gradient(135deg, var(--prairie-white) 0%, #f1f5f9 100%);
  border: 2px dashed var(--twilight-plum);
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sell-your-car-placeholder-content {
  width: 100%;
  max-width: 600px;
}

.sell-your-car-placeholder-content i {
  color: var(--twilight-plum);
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.sell-your-car-placeholder-content h3 {
  color: var(--veero-royal);
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}

.sell-your-car-placeholder-content p {
  color: var(--midwest-slate);
  margin: 0 0 2rem 0;
}

.sell-your-car-placeholder-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sell-your-car-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sell-your-car-form-group {
  display: flex;
  flex-direction: column;
}

.sell-your-car-form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--veero-royal);
  font-size: 0.9rem;
}

.sell-your-car-form-group select,
.sell-your-car-form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--country-silver);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.sell-your-car-form-group select:focus,
.sell-your-car-form-group input:focus {
  outline: none;
  border-color: var(--twilight-plum);
  box-shadow: 0 0 0 3px rgba(80, 60, 123, 0.1);
}

.sell-your-car-btn-primary {
  background: linear-gradient(135deg, var(--twilight-plum), var(--veero-royal));
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}

.sell-your-car-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(80, 60, 123, 0.3);
  background: linear-gradient(135deg, var(--veero-royal), var(--twilight-plum));
}

/* Why Choose Us Section */
.sell-your-car-why-choose-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--prairie-white) 0%, #f8fafc 100%);
}

.sell-your-car-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--veero-royal);
  margin: 0 0 1rem 0;
}

.sell-your-car-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sell-your-car-feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--twilight-plum);
}

.sell-your-car-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(80, 60, 123, 0.15);
}

.sell-your-car-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--twilight-plum), var(--harvest-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.sell-your-car-feature-icon i {
  font-size: 2rem;
  color: white;
}

.sell-your-car-feature-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--veero-royal);
  margin: 0 0 1rem 0;
}

.sell-your-car-feature-card p {
  color: var(--midwest-slate);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Process Section */
.sell-your-car-process-section {
  padding: 80px 0;
  background: var(--prairie-white);
}

.sell-your-car-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sell-your-car-process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

.sell-your-car-step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--twilight-plum), var(--veero-royal));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 25px rgba(80, 60, 123, 0.2);
}

.sell-your-car-step-content h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--veero-royal);
  margin: 0 0 0.75rem 0;
}

.sell-your-car-step-content p {
  color: var(--midwest-slate);
  font-size: 0.95rem;
  margin: 0;
}

/* Contact Section */
.sell-your-car-contact-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--veero-royal), var(--twilight-plum));
  color: white;
}

.sell-your-car-contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sell-your-car-contact-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.sell-your-car-contact-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0;
}

.sell-your-car-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sell-your-car-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.sell-your-car-contact-item i {
  font-size: 1.5rem;
  color: var(--harvest-gold);
  min-width: 30px;
}

.sell-your-car-contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.sell-your-car-contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.sell-your-car-contact-item a:hover {
  color: var(--harvest-gold);
}

/* Animations */
@keyframes sell-your-car-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .sell-your-car-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sell-your-car-hero-title {
    font-size: 2.5rem;
  }
  
  .sell-your-car-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .sell-your-car-hero-section,
  .sell-your-car-kbb-section,
  .sell-your-car-why-choose-section,
  .sell-your-car-process-section {
    padding: 50px 0;
  }
  
  .sell-your-car-hero-wrapper,
  .sell-your-car-kbb-wrapper,
  .sell-your-car-why-choose-wrapper,
  .sell-your-car-process-wrapper,
  .sell-your-car-contact-wrapper {
    padding: 0 15px;
  }
  
  .sell-your-car-hero-title {
    font-size: 2rem;
  }
  
  .sell-your-car-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .sell-your-car-emphasis-banners {
    flex-direction: column;
  }
  
  .sell-your-car-emphasis-banner {
    justify-content: center;
    text-align: center;
  }
  
  .sell-your-car-kbb-widget-container {
    padding: 2rem 1.5rem;
  }
  
  .sell-your-car-kbb-placeholder {
    padding: 2rem 1rem;
    min-height: 300px;
  }
  
  .sell-your-car-placeholder-form {
    padding: 1.5rem;
  }
  
  .sell-your-car-form-row {
    grid-template-columns: 1fr;
  }
  
  .sell-your-car-section-title {
    font-size: 2rem;
  }
  
  .sell-your-car-feature-card {
    padding: 2rem 1.5rem;
  }
  
  .sell-your-car-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .sell-your-car-process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .sell-your-car-hero-title {
    font-size: 1.75rem;
  }
  
  .sell-your-car-section-title {
    font-size: 1.75rem;
  }
  
  .sell-your-car-kbb-widget-container {
    padding: 1.5rem 1rem;
  }
  
  .sell-your-car-feature-card {
    padding: 1.5rem 1rem;
  }
  
  .sell-your-car-contact-item {
    padding: 1rem;
  }
}

/* Smooth animations */
.sell-your-car-feature-card,
.sell-your-car-process-step {
  animation: sell-your-car-fadeInUp 0.6s ease-out;
}

@keyframes sell-your-car-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}