/* ===========================
   HOME PAGE - HERO SLIDER
   Uses variables from custom.css
   =========================== */

/* ===========================
   1. HERO SLIDER SECTION
   =========================== */

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-swiper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

/* Decorative Background Pattern */
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 106, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.min-vh-75 {
  min-height: 75vh;
}

/* ===========================
   2. HERO CONTENT
   =========================== */

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-title {
  font-family: var(--font-family);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, #ff7700 100%);
  border-radius: 2px;
}

.hero-description {
  font-family: var(--font-family);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  max-width: 60ch;
}

/* ===========================
   3. HERO ACTIONS (BUTTONS)
   =========================== */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  min-width: 180px;
}

.btn-hero-primary {
  background-color: var(--brand-orange);
  color: #ffffff;
  border-color: var(--brand-orange);
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.25);
}

.btn-hero-primary:hover {
  background-color: #ffffff;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
}

.btn-hero-primary:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px;
}

.btn-hero-secondary {
  background-color: #ffffff;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 106, 0, 0.05);
  color: var(--brand-orange-strong);
  border-color: var(--brand-orange-strong);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.15);
}

.btn-hero-secondary:focus-visible {
  outline: 3px solid #2c3e50;
  outline-offset: 3px;
}

.btn-hero-primary i,
.btn-hero-secondary i {
  font-size: 0.875rem;
}

/* ===========================
   4. HERO IMAGE
   =========================== */

.hero-image {
  position: relative;
  z-index: 2;
  padding: 1rem 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 750px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
  transition: transform 300ms ease;
}

.hero-slide:hover .hero-image img {
  transform: scale(1.02);
}

/* ===========================
   5. SWIPER CONTROLS
   =========================== */

/* Pagination Bullets */
.swiper-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10;
}

.hero-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.hero-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.hero-pagination-bullet-active {
  background-color: var(--brand-orange);
  width: 32px;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(255, 106, 0, 0.3);
}

/* Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #4a5568;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  top: 50%;
  margin-top: -25px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--brand-orange);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
}

.swiper-button-prev {
  left: 2rem;
}

.swiper-button-next {
  right: 2rem;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem;
  font-weight: 600;
}

/* ===========================
   6. RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 991.98px) {
  .hero-slide {
    min-height: 65vh;
  }
  
  .min-vh-75 {
    min-height: 65vh;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  .hero-description {
    font-size: 1rem;
    max-width: 55ch;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    min-width: 160px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hero-slide {
    min-height: 80vh;
  }
  
  .min-vh-75 {
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 1.5rem 0;
    text-align: center;
  }
  
  .hero-title {
    margin-bottom: 1.25rem;
  }
  
  .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
  }
  
  .hero-description {
    margin-bottom: 1.75rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
  }
  
  .hero-image {
    padding: 1rem 0 0 0;
  }
  
  .hero-image img {
    max-height: 300px;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }
  
  .swiper-button-prev {
    left: 1rem;
  }
  
  .swiper-button-next {
    right: 1rem;
  }
  
  .swiper-pagination {
    bottom: 1.5rem;
    gap: 0.5rem;
  }
  
  .hero-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  
  .hero-pagination-bullet-active {
    width: 24px;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .hero-slide {
    min-height: 90vh;
  }
  
  .min-vh-75 {
    min-height: 90vh;
  }
  
  .hero-content {
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    max-width: 45ch;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    min-width: auto;
  }
  
  .hero-image img {
    max-height: 250px;
  }
}

/* ===========================
   7. ACCESSIBILITY & PERFORMANCE
   =========================== */

/* Focus states */
.btn-hero-primary:focus-visible,
.btn-hero-secondary:focus-visible {
  outline: 3px solid #2c3e50;
  outline-offset: 3px;
}

.hero-pagination-bullet:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-slide:hover .hero-image img,
  .btn-hero-primary:hover,
  .btn-hero-secondary:hover,
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    transform: none !important;
  }
  
  .hero-pagination-bullet:hover {
    transform: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-title::after {
    height: 6px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    border-width: 3px;
  }
  
  .hero-pagination-bullet {
    border-width: 3px;
  }
}

/* Print styles */
@media print {
  .swiper-pagination,
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
  
  .hero-slide {
    min-height: auto;
    page-break-inside: avoid;
  }
  
  .hero-actions {
    display: none;
  }
}

/* ===========================
   8. FAQ SECTION
   =========================== */

.hf-faq-section {
  padding: 56px 0 72px 0;
  background-color: #f8fafc;
  position: relative;
}

/* FAQ Header */
.hf-faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.hf-faq-title {
  font-family: var(--font-family);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.hf-faq-subtitle {
  font-family: var(--font-family);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 24px 0;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.hf-contact-link {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.hf-contact-link:hover {
  color: var(--brand-orange-strong);
  text-decoration: underline;
}

.hf-faq-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, #ff7700 100%);
  margin: 0 auto;
}

/* FAQ Accordion */
.hf-faq-accordion {
  margin-top: 40px;
}

.hf-accordion-item {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-fast);
}

.hf-accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hf-accordion-item:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.hf-accordion-item:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  margin-bottom: 0;
}

.hf-accordion-button {
  background-color: transparent;
  border: none;
  padding: 20px 24px;
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
  position: relative;
}

.hf-accordion-button:not(.collapsed) {
  background-color: rgba(255, 106, 0, 0.02);
  color: var(--brand-orange-strong);
}

.hf-accordion-button:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: var(--text-strong);
}

.hf-accordion-button:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 2px;
  z-index: 2;
}

.hf-accordion-button::after {
  display: none;
}

.hf-question-text {
  flex: 1;
  padding-right: 16px;
  line-height: 1.4;
}

.hf-chevron {
  font-size: 1.125rem;
  color: #9ca3af;
  transition: transform var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}

.hf-accordion-button:not(.collapsed) .hf-chevron {
  transform: rotate(180deg);
  color: var(--brand-orange);
}

.hf-accordion-body {
  padding: 24px 24px 24px 24px;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

/* ===========================
   9. FAQ RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 991.98px) {
  .hf-faq-section {
    padding: 48px 0 56px 0;
  }
  
  .hf-faq-header {
    margin-bottom: 40px;
  }
  
  .hf-faq-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hf-faq-subtitle {
    font-size: 1rem;
    max-width: 55ch;
  }
  
  .hf-faq-divider {
    width: 48px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hf-faq-section {
    padding: 40px 0 48px 0;
  }
  
  .hf-faq-header {
    margin-bottom: 32px;
  }
  
  .hf-faq-title {
    margin-bottom: 12px;
  }
  
  .hf-faq-subtitle {
    font-size: 0.9375rem;
    max-width: 50ch;
    margin-bottom: 20px;
  }
  
  .hf-faq-divider {
    width: 40px;
    height: 2px;
  }
  
  .hf-faq-accordion {
    margin-top: 32px;
  }
  
  .hf-accordion-item {
    margin-bottom: 12px;
  }
  
  .hf-accordion-button {
    padding: 16px 20px;
    font-size: 0.9375rem;
  }
  
  .hf-question-text {
    padding-right: 12px;
  }
  
  .hf-chevron {
    font-size: 1rem;
  }
  
  .hf-accordion-body {
    padding: 0 20px 20px 20px;
    font-size: 0.875rem;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .hf-faq-section {
    padding: 32px 0 40px 0;
  }
  
  .hf-accordion-button {
    padding: 14px 16px;
  }
  
  .hf-accordion-body {
    padding: 0 16px 16px 16px;
  }
}

/* ===========================
   10. FAQ ACCESSIBILITY & PERFORMANCE
   =========================== */

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hf-accordion-item {
    border-width: 2px;
  }
  
  .hf-faq-divider {
    height: 4px;
  }
  
  .hf-accordion-button:focus-visible {
    outline-width: 4px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hf-accordion-item:hover,
  .hf-chevron,
  .hf-accordion-button {
    transform: none !important;
    transition: none !important;
  }
  
  .hf-accordion-button:not(.collapsed) .hf-chevron {
    transform: none !important;
  }
}

/* Print styles for FAQ */
@media print {
  .hf-faq-section {
    background-color: transparent;
    padding: 24px 0;
  }
  
  .hf-accordion-item {
    box-shadow: none;
    border: 1px solid #000;
    margin-bottom: 12px;
    page-break-inside: avoid;
  }
  
  .hf-accordion-button {
    background-color: transparent !important;
  }
  
  .hf-chevron {
    display: none;
  }
  
  .accordion-collapse {
    display: block !important;
    height: auto !important;
  }
}

/* ===========================
   11. CUSTOMER REVIEWS SECTION
   =========================== */

.hf-reviews-section {
  padding: 64px 0 72px 0;
  background-color: #ffffff;
  position: relative;
}

/* Reviews Header */
.hf-reviews-header {
  text-align: center;
  margin-bottom: 56px;
}

.hf-reviews-title {
  font-family: var(--font-family);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.hf-reviews-subtitle {
  font-family: var(--font-family);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 24px 0;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.hf-reviews-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, #ff7700 100%);
  margin: 0 auto;
}

/* Reviews Grid */
.hf-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

/* Review Card */
.hf-review-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.hf-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, #ff7700 100%);
}

.hf-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #d1d5db;
}

/* Review Header */
.hf-review-header {
  margin-bottom: 16px;
}

.hf-review-info {
  width: 100%;
}

.hf-review-name {
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.hf-review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hf-review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hf-review-stars i {
  font-size: 0.875rem;
  color: #d1d5db;
  transition: color var(--transition-fast);
}

.hf-review-stars i.hf-star-filled {
  color: #fbbf24;
}

.hf-review-date {
  font-family: var(--font-family);
  font-size: 0.8125rem;
  font-weight: 400;
  color: #9ca3af;
}

/* Review Content */
.hf-review-content {
  margin-bottom: 0;
}

.hf-review-text {
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  position: relative;
}

.hf-review-text::before {
  content: '"';
  font-size: 2rem;
  color: var(--brand-orange);
  font-weight: 700;
  position: absolute;
  top: -8px;
  left: -8px;
  line-height: 1;
  opacity: 0.3;
}


/* ===========================
   12. REVIEWS RESPONSIVE DESIGN
   =========================== */

/* Large Desktop */
@media (min-width: 1200px) {
  .hf-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .hf-reviews-section {
    padding: 56px 0 64px 0;
  }
  
  .hf-reviews-header {
    margin-bottom: 48px;
  }
  
  .hf-reviews-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hf-reviews-subtitle {
    font-size: 1rem;
    max-width: 55ch;
  }
  
  .hf-reviews-divider {
    width: 48px;
  }
  
  .hf-reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .hf-review-card {
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hf-reviews-section {
    padding: 48px 0 56px 0;
  }
  
  .hf-reviews-header {
    margin-bottom: 40px;
  }
  
  .hf-reviews-title {
    margin-bottom: 12px;
  }
  
  .hf-reviews-subtitle {
    font-size: 0.9375rem;
    max-width: 50ch;
    margin-bottom: 20px;
  }
  
  .hf-reviews-divider {
    width: 40px;
    height: 2px;
  }
  
  .hf-reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  
  .hf-review-card {
    padding: 18px;
  }
  
  .hf-review-header {
    margin-bottom: 14px;
  }
  
  .hf-review-name {
    font-size: 0.9375rem;
    margin-bottom: 6px;
  }
  
  .hf-review-meta {
    gap: 8px;
  }
  
  .hf-review-stars i {
    font-size: 0.8125rem;
  }
  
  .hf-review-date {
    font-size: 0.75rem;
  }
  
  .hf-review-content {
    margin-bottom: 0;
  }
  
  .hf-review-text {
    font-size: 0.875rem;
  }
  
  .hf-review-text::before {
    font-size: 1.5rem;
    top: -6px;
    left: -6px;
  }
  
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .hf-reviews-section {
    padding: 40px 0 48px 0;
  }
  
  .hf-review-card {
    padding: 16px;
  }
  
  .hf-review-header {
    margin-bottom: 12px;
  }
}

/* ===========================
   13. REVIEWS ACCESSIBILITY & PERFORMANCE
   =========================== */

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hf-review-card {
    border-width: 2px;
  }
  
  .hf-reviews-divider {
    height: 4px;
  }
  
  .hf-review-card::before {
    height: 6px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hf-review-card:hover {
    transform: none !important;
  }
  
  .hf-review-card,
  .hf-review-stars i {
    transition: none !important;
  }
}

/* Print styles for Reviews */
@media print {
  .hf-reviews-section {
    padding: 24px 0;
    background-color: transparent;
  }
  
  .hf-reviews-grid {
    display: block;
    margin-top: 24px;
  }
  
  .hf-review-card {
    box-shadow: none;
    border: 1px solid #000;
    margin-bottom: 16px;
    padding: 16px;
    page-break-inside: avoid;
  }
  
  .hf-review-card::before {
    display: none;
  }
  
  .hf-review-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ===========================
   CALCULATOR SECTION
   =========================== */

.hf-calculator-section {
  padding: 80px 0;
  /* background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%); */
  position: relative;
  overflow: hidden;
}

.hf-calculator-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(31, 41, 55, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.min-vh-70 {
  min-height: 70vh;
}

/* Calculator Visual */
.hf-calculator-visual {
  position: relative;
  padding: 2rem 0;
}

.hf-visual-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hf-visual-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  /* object-fit: contain; */
  /* filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)); */
  z-index: 2;
  position: relative;
}

.hf-visual-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(31, 41, 55, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Calculator Card */
.hf-calculator-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 32px;
  position: relative;
}

/* Calculator Header */
.hf-calculator-header {
  margin-bottom: 32px;
  text-align: center;
}

.hf-calculator-title {
  font-family: var(--font-family);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hf-calculator-title i {
  font-size: 1.25rem;
  color: var(--brand-orange);
}

.hf-calculator-subtitle {
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* Form Styles */
.hf-calculator-form {
  margin-bottom: 24px;
}

.hf-form-group {
  margin-bottom: 24px;
}

.hf-form-label {
  display: block;
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.hf-input-wrapper {
  position: relative;
}

.hf-form-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  font-family: var(--font-family);
  font-size: 1rem;
  border: 2px solid #e5e7eb;
  background-color: #ffffff;
  transition: all var(--transition-fast);
}

.hf-form-input:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.hf-input-currency {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
}

.hf-form-error {
  margin-top: 6px;
  font-family: var(--font-family);
  font-size: 0.8125rem;
  color: #dc2626;
  min-height: 20px;
}

/* Down Payment Container */
.hf-down-payment-container {
  space-y: 16px;
}

.hf-slider-container {
  position: relative;
  margin-bottom: 16px;
}

.hf-slider {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.hf-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--brand-orange);
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hf-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--brand-orange);
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.hf-down-payment-inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hf-percentage-input {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hf-form-input-small {
  width: 80px;
  padding: 8px 12px;
  font-family: var(--font-family);
  font-size: 0.875rem;
  border: 2px solid #e5e7eb;
  background-color: #ffffff;
  text-align: center;
  transition: all var(--transition-fast);
}

.hf-form-input-small:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.hf-percentage-input span {
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
}

.hf-amount-display {
  text-align: right;
}

.hf-amount-label {
  display: block;
  font-family: var(--font-family);
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 4px;
}

.hf-amount-value {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}

/* Form Select */
.hf-form-select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-family);
  font-size: 1rem;
  border: 2px solid #e5e7eb;
  background-color: #ffffff;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.hf-form-select:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

/* Installment Options */
.hf-installment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.hf-installment-option {
  position: relative;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all var(--transition-fast);
  display: block;
}

.hf-installment-option:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hf-radio-input {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  accent-color: #1f2937;
}

.hf-radio-input:checked + .hf-radio-content {
  color: #1f2937;
}

.hf-installment-option:has(.hf-radio-input:checked) {
  border-color: #1f2937;
  background-color: #f8fafc;
  box-shadow: 0 2px 8px rgba(31, 41, 55, 0.1);
}

.hf-radio-content {
  margin-left: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hf-option-months {
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.hf-option-amount {
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1f2937;
}

/* Calculator Actions */
.hf-calculator-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.hf-btn-primary,
.hf-btn-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.hf-btn-primary {
  background-color: var(--brand-orange);
  color: #ffffff;
}

.hf-btn-primary:hover:not(:disabled) {
  background-color: #ffffff;
  color: var(--brand-orange);
  border: 2px solid var(--brand-orange);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.hf-btn-primary:disabled {
  background-color: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
}

.hf-btn-secondary {
  background-color: transparent;
  color: #1f2937;
  border: 2px solid #1f2937;
}

.hf-btn-secondary:hover {
  background-color: #1f2937;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
}

.hf-btn-primary i,
.hf-btn-secondary i {
  font-size: 0.875rem;
}

/* Calculator Disclaimer */
.hf-calculator-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background-color: #f8fafc;
  border-left: 4px solid #6b7280;
  font-family: var(--font-family);
  font-size: 0.8125rem;
  color: #6b7280;
}

.hf-calculator-disclaimer i {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* ===========================
   CALCULATOR RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 991.98px) {
  .hf-calculator-section {
    padding: 60px 0;
  }
  
  .min-vh-70 {
    min-height: 60vh;
  }
  
  .hf-calculator-card {
    padding: 28px;
  }
  
  .hf-calculator-header {
    margin-bottom: 28px;
  }
  
  .hf-calculator-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }
  
  .hf-calculator-title i {
    font-size: 1.125rem;
  }
  
  .hf-calculator-subtitle {
    font-size: 0.9375rem;
  }
  
  .hf-form-group {
    margin-bottom: 20px;
  }
  
  .hf-installment-options {
    gap: 10px;
  }
  
  .hf-installment-option {
    padding: 10px 14px;
  }
  
  .hf-calculator-actions {
    gap: 10px;
    margin-top: 28px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hf-calculator-section {
    padding: 48px 0;
  }
  
  .min-vh-70 {
    min-height: auto;
  }
  
  .hf-calculator-visual {
    padding: 1rem 0;
    order: 2;
  }
  
  .hf-visual-image {
    max-width: 300px;
  }
  
  .hf-calculator-card {
    padding: 24px;
    margin-bottom: 32px;
  }
  
  .hf-calculator-header {
    margin-bottom: 24px;
  }
  
  .hf-calculator-title {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .hf-calculator-title i {
    font-size: 1.5rem;
  }
  
  .hf-form-group {
    margin-bottom: 18px;
  }
  
  .hf-down-payment-inputs {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .hf-amount-display {
    text-align: left;
    width: 100%;
  }
  
  .hf-installment-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .hf-installment-option {
    padding: 10px 12px;
  }
  
  .hf-radio-input {
    top: 10px;
    left: 10px;
    width: 14px;
    height: 14px;
  }
  
  .hf-radio-content {
    margin-left: 24px;
  }
  
  .hf-calculator-actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
  }
  
  .hf-btn-primary,
  .hf-btn-secondary {
    width: 100%;
    padding: 12px 20px;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .hf-calculator-section {
    padding: 40px 0;
  }
  
  .hf-calculator-card {
    padding: 20px;
  }
  
  .hf-calculator-header {
    margin-bottom: 20px;
  }
  
  .hf-calculator-title {
    font-size: 1.25rem;
  }
  
  .hf-calculator-subtitle {
    font-size: 0.875rem;
  }
  
  .hf-form-input,
  .hf-form-select {
    padding: 10px 35px 10px 14px;
    font-size: 0.9375rem;
  }
  
  .hf-form-input-small {
    width: 70px;
    padding: 6px 10px;
  }
  
  .hf-installment-option {
    padding: 8px 10px;
  }
  
  .hf-radio-input {
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
  }
  
  .hf-radio-content {
    margin-left: 20px;
  }
  
  .hf-option-months {
    font-size: 0.75rem;
  }
  
  .hf-option-amount {
    font-size: 0.75rem;
  }
  
  .hf-btn-primary,
  .hf-btn-secondary {
    padding: 10px 16px;
    font-size: 0.875rem;
  }
  
  .hf-calculator-disclaimer {
    padding: 10px;
    font-size: 0.75rem;
  }
}

/* ===========================
   CALCULATOR ACCESSIBILITY & PERFORMANCE
   =========================== */

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hf-calculator-card {
    border-width: 2px;
  }
  
  .hf-form-input,
  .hf-form-select,
  .hf-installment-option {
    border-width: 3px;
  }
  
  .hf-slider {
    height: 8px;
  }
  
  .hf-slider::-webkit-slider-thumb,
  .hf-slider::-moz-range-thumb {
    border-width: 4px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hf-calculator-section::before,
  .hf-visual-decoration {
    display: none;
  }
  
  .hf-calculator-card,
  .hf-form-input,
  .hf-form-select,
  .hf-installment-option,
  .hf-btn-primary,
  .hf-btn-secondary {
    transition: none !important;
  }
  
  .hf-btn-primary:hover,
  .hf-btn-secondary:hover {
    transform: none !important;
  }
}

/* Focus visible styles */
.hf-form-input:focus-visible,
.hf-form-select:focus-visible,
.hf-form-input-small:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 2px;
}

.hf-installment-option:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 2px;
}

.hf-slider:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px;
}

/* Print styles for Calculator */
@media print {
  .hf-calculator-section {
    background: transparent;
    padding: 24px 0;
  }
  
  .hf-calculator-section::before {
    display: none;
  }
  
  .hf-calculator-visual {
    display: none;
  }
  
  .hf-calculator-card {
    box-shadow: none;
    border: 1px solid #000;
    padding: 16px;
  }
  
  .hf-calculator-actions {
    display: none;
  }
  
  .hf-installment-options {
    display: block;
  }
  
  .hf-installment-option {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    page-break-inside: avoid;
  }
}

/* ===========================
   14. POPULAR CARS SECTION
   =========================== */

.hf-cars-section {
  padding: 64px 0 72px 0;
  background-color: #ffffff;
  position: relative;
}

/* Cars Header */
.hf-cars-header {
  margin-bottom: 48px;
}

.hf-cars-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hf-cars-header-left {
  flex: 1;
}

.hf-cars-title {
  font-family: var(--font-family);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hf-cars-title i {
  font-size: 1.25rem;
  color: #f59e0b;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hf-cars-subtitle {
  font-family: var(--font-family);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  max-width: 50ch;
}

.hf-cars-header-right {
  flex-shrink: 0;
}

.hf-cars-stats {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 16px 20px;
  text-align: center;
  border-left: 4px solid #1f2937;
  position: relative;
}

.hf-stats-number {
  display: block;
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1;
}

.hf-stats-text {
  display: block;
  font-family: var(--font-family);
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Cars Slider Container */
.hf-cars-slider-container {
  position: relative;
  margin-bottom: 40px;
}

.hf-cars-swiper {
  padding: 0 0 40px 0;
  overflow: hidden;
}

/* Car Card */
.hf-car-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hf-car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: #d1d5db;
}

/* Car Image */
.hf-car-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  background-color: #f3f4f6;
}

.hf-car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-fast);
}

.hf-car-card:hover .hf-car-image img {
  transform: scale(1.05);
}


/* Car Content */
.hf-car-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}


.hf-car-title {
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.hf-car-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hf-car-title a:hover {
  color: var(--brand-orange);
}

/* Car Specs */
.hf-car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.hf-car-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family);
  font-size: 0.8125rem;
  color: #6b7280;
}

.hf-car-spec i {
  font-size: 0.875rem;
  color: #9ca3af;
  flex-shrink: 0;
}

/* Car Footer */
.hf-car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.hf-car-price {
  font-family: var(--font-family);
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
}

.hf-car-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: #6b7280;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-family);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.hf-car-btn:hover {
  background-color: #374151;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.hf-car-btn i {
  font-size: 0.75rem;
}

/* Cars Navigation */
.hf-cars-nav {
  position: absolute;
  top: 50%;
  left: -60px;
  right: -60px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.hf-cars-button-prev,
.hf-cars-button-next {
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hf-cars-button-prev:hover,
.hf-cars-button-next:hover {
  background-color: #1f2937;
  border-color: #1f2937;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(31, 41, 55, 0.3);
}

.hf-cars-button-prev i,
.hf-cars-button-next i {
  font-size: 1.125rem;
  color: #6b7280;
  transition: color var(--transition-fast);
}

.hf-cars-button-prev:hover i,
.hf-cars-button-next:hover i {
  color: #ffffff;
}

.hf-cars-button-prev {
  left: 0;
}

.hf-cars-button-next {
  right: 0;
}

/* Cars Pagination */
.hf-cars-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.hf-cars-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d5db;
  opacity: 1;
  transition: all var(--transition-fast);
}

.hf-cars-pagination .swiper-pagination-bullet-active {
  background-color: #1f2937;
  width: 24px;
}

/* Cars Footer */
.hf-cars-footer {
  text-align: center;
  margin-top: 32px;
}

.hf-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: transparent;
  color: #1f2937;
  border: 2px solid #1f2937;
  text-decoration: none;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.hf-view-all-btn:hover {
  background-color: #1f2937;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
}

.hf-view-all-btn i {
  font-size: 0.875rem;
  transition: transform var(--transition-fast);
}

.hf-view-all-btn:hover i {
  transform: translateX(4px);
}

/* ===========================
   15. CARS RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 991.98px) {
  .hf-cars-section {
    padding: 56px 0 64px 0;
  }
  
  .hf-cars-header {
    margin-bottom: 40px;
  }
  
  .hf-cars-header-content {
    gap: 24px;
  }
  
  .hf-cars-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }
  
  .hf-cars-title i {
    font-size: 1.125rem;
  }
  
  .hf-cars-subtitle {
    font-size: 0.9375rem;
    max-width: 45ch;
  }
  
  .hf-cars-stats {
    padding: 12px 16px;
  }
  
  .hf-stats-number {
    font-size: 1.25rem;
  }
  
  .hf-cars-swiper {
    padding: 0 0 40px 0;
  }
  
  .hf-cars-nav {
    left: -50px;
    right: -50px;
  }
  
  .hf-cars-button-prev,
  .hf-cars-button-next {
    width: 42px;
    height: 42px;
  }
  
  .hf-cars-button-prev i,
  .hf-cars-button-next i {
    font-size: 1rem;
  }
  
  .hf-car-image {
    height: 180px;
  }
  
  .hf-car-content {
    padding: 18px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hf-cars-section {
    padding: 48px 0 56px 0;
  }
  
  .hf-cars-header {
    margin-bottom: 32px;
  }
  
  .hf-cars-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .hf-cars-title {
    margin-bottom: 8px;
    gap: 8px;
  }
  
  .hf-cars-title i {
    font-size: 1rem;
  }
  
  .hf-cars-subtitle {
    font-size: 0.875rem;
    max-width: none;
  }
  
  .hf-cars-header-right {
    align-self: flex-end;
  }
  
  .hf-cars-stats {
    padding: 10px 14px;
  }
  
  .hf-stats-number {
    font-size: 1.125rem;
  }
  
  .hf-stats-text {
    font-size: 0.6875rem;
  }
  
  .hf-cars-swiper {
    padding: 0 0 40px 0;
  }
  
  .hf-cars-nav {
    left: -30px;
    right: -30px;
  }
  
  .hf-cars-button-prev,
  .hf-cars-button-next {
    width: 36px;
    height: 36px;
  }
  
  .hf-cars-button-prev i,
  .hf-cars-button-next i {
    font-size: 0.875rem;
  }
  
  .hf-car-image {
    height: 160px;
  }
  
  .hf-car-content {
    padding: 16px;
  }
  
  .hf-car-header {
    margin-bottom: 10px;
  }
  
  .hf-car-year,
  .hf-car-transmission {
    font-size: 0.75rem;
  }
  
  .hf-car-title {
    font-size: 0.9375rem;
    margin-bottom: 14px;
  }
  
  .hf-car-specs {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 16px;
  }
  
  .hf-car-spec {
    font-size: 0.75rem;
  }
  
  .hf-car-footer {
    padding-top: 12px;
    gap: 8px;
  }
  
  .hf-car-price {
    font-size: 1rem;
  }
  
  .hf-car-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .hf-view-all-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .hf-cars-section {
    padding: 40px 0 48px 0;
  }
  
  .hf-cars-swiper {
    padding: 0 0 40px 0;
  }
  
  .hf-cars-nav {
    display: none;
  }
  
  .hf-car-content {
    padding: 14px;
  }
}

/* ===========================
   16. CARS ACCESSIBILITY & PERFORMANCE
   =========================== */

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hf-car-card {
    border-width: 2px;
  }
  
  .hf-cars-divider {
    height: 4px;
  }
  
  .hf-cars-button-prev,
  .hf-cars-button-next {
    border-width: 2px;
  }
  
  .hf-view-all-btn {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hf-car-card:hover,
  .hf-car-image img,
  .hf-cars-button-prev:hover,
  .hf-cars-button-next:hover,
  .hf-view-all-btn:hover {
    transform: none !important;
  }
  
  .hf-car-card,
  .hf-car-btn,
  .hf-view-all-btn,
  .hf-cars-button-prev,
  .hf-cars-button-next {
    transition: none !important;
  }
}

/* Print styles for Cars */
@media print {
  .hf-cars-section {
    background-color: transparent;
    padding: 24px 0;
  }
  
  .hf-cars-nav,
  .hf-cars-pagination {
    display: none !important;
  }
  
  .hf-cars-swiper {
    padding: 0;
  }
  
  .hf-car-card {
    box-shadow: none;
    border: 1px solid #000;
    margin-bottom: 16px;
    page-break-inside: avoid;
  }
  
  .hf-car-card:hover {
    transform: none;
    box-shadow: none;
  }
  
  .hf-car-badge {
    background: #000 !important;
    color: #fff !important;
  }
  
  .hf-view-all-btn {
    display: none;
  }
}
