.home-hero { position: relative; margin: 0 auto; padding: 0; }
.home-hero .home-hero__slider { position: relative; width: 100%; max-width: none; margin: 0; }

/* Prevent CLS: define aspect and min-heights */
.home-hero .home-hero__slide { position: relative; overflow: hidden; border-radius: 18px; box-shadow: 0 10px 24px rgba(0,0,0,0.10); }
.home-hero .home-hero__slide picture, 
.home-hero .home-hero__slide img { display: block; width: 100%; height: 100%; }

/* Desktop aspect ratio ~ 2880x800 (18:5) */
@media (min-width: 992px) {
  .home-hero .home-hero__slide { aspect-ratio: 18 / 5; min-height: 560px; }
}

/* Tablet fallback height */
@media (min-width: 768px) and (max-width: 991.98px) {
  .home-hero .home-hero__slide { min-height: 520px; }
}

/* Mobile: image keeps own ratio, ensure usable min-height */
@media (max-width: 991.98px) {
  .home-hero { padding: 0; }
  .home-hero .home-hero__slide { height: 360px; min-height: 360px; border-radius: 16px; }
  .home-hero .home-hero__slide picture,
  .home-hero .home-hero__slide img { height: 100%; }
}

.home-hero .home-hero__slide img { object-fit: cover; object-position: center; }

/* Remove focus outline on image itself while keeping controls accessible */
.home-hero .home-hero__slide img:focus { outline: none; }

/* Arrows - bottom-right, circular ghost buttons */
.home-hero .home-hero__arrows { position: absolute; right: 24px; bottom: 24px; display: inline-flex; align-items: center; gap: 10px; z-index: 5; }
.home-hero .home-hero__arrow { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 9999px; background: rgba(255,255,255,0.8); color: #111; border: 1px solid rgba(17,17,17,0.08); box-shadow: 0 6px 16px rgba(0,0,0,0.12); cursor: pointer; transition: background-color 160ms ease, opacity 160ms ease, transform 120ms ease; }
.home-hero .home-hero__arrow:hover { background: rgba(255,255,255,0.92); }
.home-hero .home-hero__arrow:active { transform: translateY(1px); }
.home-hero .home-hero__arrow i { font-size: 18px; line-height: 1; }

/* Mobile arrow size */
@media (max-width: 991.98px) {
  .home-hero .home-hero__arrow { width: 44px; height: 44px; }
}

/* Focus styles for accessibility */
.home-hero .home-hero__arrow:focus { outline: 2px solid var(--brand-orange, #F59E0B); outline-offset: 2px; }
.home-hero .home-hero__slider:focus { outline: 2px solid var(--brand-orange, #F59E0B); outline-offset: 2px; }

/* Swiper internals alignment */
.home-hero .swiper { width: 100%; height: 100%; }
.home-hero .swiper-wrapper { align-items: stretch; }
.home-hero .swiper-slide { display: flex; }

/* Minimal pagination dots (optional) */
.home-hero .home-hero__pagination { position: absolute; left: 24px; bottom: 24px; width: auto !important; }
.home-hero .swiper-pagination-bullet { width: 6px; height: 6px; background: rgba(0,0,0,0.28); opacity: 1; margin: 0 3px !important; }
.home-hero .swiper-pagination-bullet-active { background: var(--brand-orange, #F59E0B); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .home-hero * { transition: none !important; animation: none !important; }
}


/* ===================== */
/* Home Hero Form (HHF)  */
/* ===================== */
.home-hero-form { position: absolute; left: 50%; transform: translateX(-50%) translateY(50%); bottom: 0; z-index: 10; width: 100%; padding: 0 16px; }
.home-hero-form .hhf-card { max-width: 960px; margin: 0 auto; background: #ffffff; border-radius: 20px; box-shadow: 0 18px 48px rgba(0,0,0,0.12); border: 1px solid #eaeaea; box-shadow: 0 18px 48px rgba(0,0,0,0.12), inset 0 0 0 1px #eaeaea; }
.home-hero-form .hhf-card { padding: 16px; }
.home-hero-form .hhf-tabs { display: flex; justify-content: center; margin-bottom: 0; }
.home-hero-form .hhf-tablist { display: inline-flex; background: #f5f7fa; border-radius: 9999px; padding: 4px; gap: 6px; }
.home-hero-form .hhf-tab { appearance: none; border: 0; background: transparent; padding: 8px 12px; border-radius: 9999px; cursor: pointer; font-weight: 600; color: #111; }
.home-hero-form .hhf-tab:hover { background: #eef2f6; }
.home-hero-form .hhf-tab.is-active { background: #ffffff; box-shadow: inset 0 -2px 0 0 #1a1a1a; }
.home-hero-form .hhf-panels { }
.home-hero-form .hhf-panel { }
.home-hero-form .hhf-panel { opacity: 1; transform: translateY(0); transition: opacity 200ms ease, transform 200ms ease; }
.home-hero-form .hhf-panel[hidden] { display: block !important; opacity: 0; transform: translateY(6px); height: 0; overflow: hidden; padding-top: 0; padding-bottom: 0; }
.home-hero-form .hhf-form .form-label { font-weight: 600; font-size: 0.9rem; color: #111; margin-bottom: 6px; }
.home-hero-form .hhf-form .form-select, 
.home-hero-form .hhf-form .form-control { border-radius: 14px; border: 0; min-height: 48px; background: #ffffff; }
.home-hero-form .hhf-form .form-select:focus, 
.home-hero-form .hhf-form .form-control:focus { outline: 2px solid #1a1a1a; outline-offset: 2px; box-shadow: none; }

/* Separate tabs from form visually */
.home-hero-form .hhf-panels { border-top: 0; padding-top: 12px; }
.home-hero-form .hhf-tabs + .hhf-card { margin-top: 0; border-top: 2px solid #1a1a1a; }
.home-hero-form .hhf-tabs + .hhf-card { margin-top: 6px; }

/* Field separators instead of full input borders */
@media (min-width: 992px) {
  .home-hero-form .hhf-form .row > div + div { border-left: 1px solid #eaeaea; }
  .home-hero-form .hhf-form .row > div + div { padding-left: 16px; }
}
@media (max-width: 991.98px) {
  .home-hero-form .hhf-form .row > div + div { border-top: 1px solid #eaeaea; padding-top: 12px; }
}
.home-hero-form .hhf-actions .btn { min-height: 48px; }
.home-hero-form .btn-pill-primary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border-radius: 9999px; background: #1a1a1a; color: #fff; border: 1px solid #1a1a1a; font-weight: 700; box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.home-hero-form .btn-pill-primary:hover { filter: brightness(1.06); box-shadow: 0 12px 28px rgba(0,0,0,0.35); }
.home-hero-form .btn-pill-primary:active { transform: translateY(1px); }
.home-hero-form .btn-ghost { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 9999px; background: rgba(255,255,255,0.9); color: #111; border: 1px solid #eaeaea; box-shadow: 0 6px 16px rgba(0,0,0,0.12); }
.home-hero-form .btn-ghost:hover { background: rgba(255,255,255,0.96); }
.home-hero-form .btn-ghost i { font-size: 16px; }

/* Ensure hero arrows don't overlap the form actions area excessively */
.home-hero .home-hero__arrows { bottom: 28px; right: 28px; }

/* Responsive behavior */
@media (max-width: 991.98px) {
  .home-hero-form { position: static; transform: none; bottom: auto; padding: 0 16px; margin-top: 16px; }
  .home-hero-form .hhf-card { border-radius: 20px; }
  .home-hero-form .hhf-card { padding: 16px; }
  .home-hero-form .hhf-tabs { margin-bottom: 12px; }
  .home-hero-form .hhf-actions .btn { width: 100%; }
}

/* ===================== */
/* Cars Section (HF)     */
/* ===================== */
.hf-cars-section {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    margin-top: 136px;
}

.hf-cars-section .container {
  position: relative;
}

/* Header Section */
.hf-cars-header {
  margin-bottom: 48px;
}

.hf-cars-header-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.hf-cars-header-left {
  flex: 1;
}

.hf-cars-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 10px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hf-cars-title i {
  color: #f59e0b;
  font-size: 22px;
  opacity: 0.9;
}

.hf-cars-subtitle {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  max-width: 640px;
  line-height: 1.6;
  font-weight: 400;
}

.hf-cars-header-right {
  flex-shrink: 0;
}

.hf-cars-stats {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

.hf-stats-number {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #111111;
  line-height: 1;
  letter-spacing: -0.01em;
}

.hf-stats-text {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 3px;
  font-weight: 500;
}

/* Slider Container */
.hf-cars-slider-container {
  position: relative;
  margin-bottom: 40px;
}

.hf-cars-swiper {
  overflow: hidden;
  padding: 0 0 40px 0;
}

.hf-cars-swiper .swiper-wrapper {
  align-items: stretch;
}

.hf-cars-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Car Card */
.hf-car-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

.hf-car-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.hf-car-image {
  position: relative;
  margin-bottom: 14px;
  border-radius: 14px;
  overflow: hidden;
  /* aspect-ratio: 16/9; */
}

.hf-car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.hf-car-card:hover .hf-car-image img {
  transform: scale(1.02);
}

.hf-car-image a {
  display: block;
  text-decoration: none;
}

.hf-car-image a:focus {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.hf-car-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hf-car-title {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hf-car-title a {
  color: #111111;
  text-decoration: none;
  transition: color 200ms ease;
}

.hf-car-title a:hover {
  color: #f59e0b;
}

.hf-car-title a:focus {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.hf-car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.hf-car-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 5px 8px;
  font-size: 11px;
  color: #475569;
  font-weight: 500;
}

.hf-car-spec i {
  font-size: 10px;
  color: #64748b;
  opacity: 0.8;
}

.hf-car-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hf-car-price {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.hf-car-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  border-radius: 9999px;
  padding: 8px 16px;
  min-height: 40px;
  font-size: 13px;
  font-weight: 600;
  transition: all 300ms ease;
  flex-shrink: 0;
}

.hf-car-btn:hover {
  background: #1a1a1a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  color: #ffffff;
  text-decoration: none;
}

.hf-car-btn:focus {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.hf-car-btn i {
  font-size: 11px;
}

/* Navigation */
.hf-cars-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 10;
}

.hf-cars-button-prev,
.hf-cars-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
  pointer-events: auto;
  z-index: 10;
}

.hf-cars-button-prev {
  left: -32px;
}

.hf-cars-button-next {
  right: -32px;
}

.hf-cars-button-prev:hover,
.hf-cars-button-next:hover {
  background: #1a1a1a;
  transform: translateY(-50%) scale(1.05);
}

.hf-cars-button-prev:focus,
.hf-cars-button-next:focus {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.hf-cars-button-prev i,
.hf-cars-button-next i {
  font-size: 16px;
}

/* Pagination */
.hf-cars-pagination {
  text-align: center;
  margin-top: 24px;
}

.hf-cars-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  opacity: 1;
  margin: 0 4px;
  transition: all 200ms ease;
}

.hf-cars-pagination .swiper-pagination-bullet-active {
  background: #111111;
  transform: scale(1.2);
}

/* Footer */
.hf-cars-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #eaeaea;
}

.hf-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  position: relative;
  transition: all 200ms ease;
}

.hf-view-all-btn::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #111111;
  transition: width 200ms ease;
}

.hf-view-all-btn:hover {
  color: #111111;
  text-decoration: none;
}

.hf-view-all-btn:hover::after {
  width: 100%;
}

.hf-view-all-btn:focus {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.hf-view-all-btn i {
  font-size: 14px;
  transition: transform 200ms ease;
}

.hf-view-all-btn:hover i {
  transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 1280px) {
  .hf-cars-section {
    padding: 60px 0;
  }
  
  .hf-cars-title {
    font-size: 24px;
    font-weight: 600;
  }
}

@media (max-width: 1024px) {
  .hf-cars-header-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  
  .hf-cars-stats {
    padding: 16px 20px;
  }
  
  .hf-stats-number {
    font-size: 20px;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  .hf-cars-section {
    padding: 40px 0;
  }
  
  .hf-cars-title {
    font-size: 22px;
    font-weight: 600;
  }
  
  .hf-cars-subtitle {
    font-size: 14px;
  }
  
  .hf-car-card {
    padding: 16px;
  }
  
  .hf-car-title {
    font-size: 16px;
    font-weight: 600;
  }
  
  .hf-car-price {
    font-size: 16px;
    font-weight: 600;
  }
  
  .hf-cars-button-prev,
  .hf-cars-button-next {
    width: 44px;
    height: 44px;
  }
  
  .hf-cars-button-prev {
    left: 4px;
  }
  
  .hf-cars-button-next {
    right: 4px;
  }
}

@media (max-width: 480px) {
  .hf-cars-section {
    padding: 32px 0;
  }
  
  .hf-cars-header {
    margin-bottom: 32px;
  }
  
  .hf-cars-title {
    font-size: 20px;
    font-weight: 600;
  }
  
  .hf-cars-subtitle {
    font-size: 13px;
  }
  
  .hf-car-card {
    padding: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  
  .hf-car-title {
    font-size: 15px;
    font-weight: 600;
  }
  
  .hf-car-specs {
    gap: 5px;
  }
  
  .hf-car-spec {
    font-size: 10px;
    padding: 4px 7px;
  }
  
  .hf-car-price {
    font-size: 15px;
    font-weight: 600;
  }
  
  .hf-car-btn {
    padding: 7px 12px;
    min-height: 36px;
    font-size: 12px;
  }
  
  .hf-cars-button-prev,
  .hf-cars-button-next {
    width: 40px;
    height: 40px;
  }
  
  .hf-cars-button-prev i,
  .hf-cars-button-next i {
    font-size: 14px;
  }
}

/* Swiper Breakpoints */
@media (min-width: 1280px) {
  .hf-cars-swiper {
    --swiper-navigation-size: 48px;
  }
}

@media (max-width: 1279px) and (min-width: 1024px) {
  .hf-cars-swiper {
    --swiper-navigation-size: 48px;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .hf-cars-swiper {
    --swiper-navigation-size: 44px;
  }
}

@media (max-width: 767px) {
  .hf-cars-swiper {
    --swiper-navigation-size: 40px;
  }
}

/* ===================== */
/* Reviews Section (HF)  */
/* ===================== */
.hf-reviews-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}

.hf-reviews-section .container {
  position: relative;
}

/* Header Section */
.hf-reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.hf-reviews-title {
  font-size: 30px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hf-reviews-subtitle {
  font-size: 17px;
  color: #64748b;
  margin: 0 0 20px 0;
  line-height: 1.6;
  font-weight: 400;
}

.hf-reviews-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #eaeaea 0%, #f59e0b 50%, #eaeaea 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Reviews Grid */
.hf-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Review Card */
.hf-review-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

.hf-review-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.hf-review-card:focus-within {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

/* Review Header */
.hf-review-header {
  margin-bottom: 16px;
}

.hf-review-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hf-review-name {
  font-size: 17px;
  font-weight: 600;
  color: #111111;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.hf-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hf-review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.hf-review-stars .fas.fa-star {
  color: #F59E0B;
  font-size: 15px;
  line-height: 1;
  opacity: 0.9;
}

.hf-review-date {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
}

/* Review Content */
.hf-review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hf-review-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .hf-reviews-section {
    padding: 60px 0;
  }
  
  .hf-reviews-title {
    font-size: 26px;
    font-weight: 600;
  }
  
  .hf-reviews-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .hf-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .hf-review-card {
    padding: 20px;
  }
  
  .hf-review-name {
    font-size: 16px;
    font-weight: 600;
  }
  
  .hf-review-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hf-reviews-section {
    padding: 40px 0;
  }
  
  .hf-reviews-header {
    margin-bottom: 40px;
  }
  
  .hf-reviews-title {
    font-size: 22px;
    font-weight: 600;
  }
  
  .hf-reviews-subtitle {
    font-size: 14px;
  }
  
  .hf-reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .hf-review-card {
    padding: 18px;
  }
  
  .hf-review-name {
    font-size: 15px;
    font-weight: 600;
  }
  
  .hf-review-text {
    font-size: 14px;
  }
  
  .hf-review-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .hf-review-date {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hf-reviews-section {
    padding: 32px 0;
  }
  
  .hf-reviews-header {
    margin-bottom: 32px;
  }
  
  .hf-reviews-title {
    font-size: 20px;
    font-weight: 600;
  }
  
  .hf-reviews-subtitle {
    font-size: 13px;
  }
  
  .hf-review-card {
    padding: 16px;
    border-radius: 16px;
  }
  
  .hf-review-name {
    font-size: 14px;
    font-weight: 600;
  }
  
  .hf-review-text {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .hf-review-stars .fas.fa-star {
    font-size: 13px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hf-review-card {
    transition: none;
  }
  
  .hf-review-card:hover {
    transform: none;
  }
}

/* ===================== */
/* FAQ Section (HF)      */
/* ===================== */
.hf-faq-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}

.hf-faq-section .container {
  position: relative;
}



/* Sol Kolon - Görsel */
.hf-faq-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hf-faq-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 300ms ease;
}

.hf-faq-image:hover img {
  transform: scale(1.02);
}

/* Sağ Kolon - FAQ İçerik */
.hf-faq-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Header Section */
.hf-faq-header {
  text-align: left;
  /* margin-bottom: 40px; */
}


.hf-faq-title {
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hf-faq-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-weight: 400;
}

.hf-faq-divider {
  width: 40px;
  height: 2px;
  background: #f59e0b;
  margin: 0;
  border-radius: 1px;
}

/* Accordion Container */
.hf-faq-accordion {
  margin-top: 20px;
}

.hf-faq-section .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 0;
  --bs-accordion-btn-color: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-icon-width: 0;
  --bs-accordion-btn-icon-transform: none;
  --bs-accordion-btn-icon-transition: none;
  --bs-accordion-btn-active-icon: none;
  --bs-accordion-btn-focus-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0;
  --bs-accordion-active-color: transparent;
  --bs-accordion-active-bg: transparent;
}

/* Accordion Item */
.hf-faq-section .accordion-item {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 300ms ease;
}

.hf-faq-section .accordion-item:last-child {
  margin-bottom: 0;
}

.hf-faq-section .accordion-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: #e5e7eb;
  background: #f8fafc;
}

.hf-faq-section .accordion-item:not(.collapsed) {
  background: #f9fafb;
  border-color: #dfe3e8;
}

/* Accordion Button */
.hf-faq-section .accordion-button {
  background: transparent;
  border: none;
  padding: 18px 24px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: #111111;
  transition: all 200ms ease;
  position: relative;
}

.hf-faq-section .accordion-button:not(.collapsed) {
  background: transparent;
  color: #111111;
  box-shadow: none;
}

.hf-faq-section .accordion-button:focus {
  outline: 2px solid #F59E0B;
  outline-offset: 3px;
  box-shadow: none;
  border-color: transparent;
}

.hf-faq-section .accordion-button::after {
  display: none;
}

.hf-faq-section .accordion-button.collapsed {
  color: #374151;
}

.hf-faq-section .accordion-button.collapsed .hf-chevron {
  color: #6b7280;
}

/* Question Text */
.hf-faq-section .hf-question-text {
  flex: 1;
  margin-right: 16px;
  line-height: 1.4;
}

/* Chevron Icon */
.hf-faq-section .hf-chevron {
  font-size: 16px;
  color: #111111;
  transition: transform 200ms ease, color 200ms ease;
  flex-shrink: 0;
}

.hf-faq-section .accordion-button:not(.collapsed) .hf-chevron {
  transform: rotate(180deg);
  color: #111111;
}

/* Accordion Body */
.hf-faq-section .accordion-collapse {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.hf-faq-section .accordion-body {
  background: #f9fafb;
  border-radius: 14px;
  padding: 20px 24px;
  margin: 0 16px 16px 16px;
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}

.hf-faq-section .accordion-body p {
  margin: 0 0 12px 0;
}

.hf-faq-section .accordion-body p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .hf-faq-section {
    padding: 60px 0;
  }
  
  .hf-faq-section .row {
    gap: 32px;
  }
  
  .hf-faq-title {
    font-size: 26px;
    font-weight: 700;
  }
  
  .hf-faq-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .hf-faq-section .row {
    gap: 24px;
  }
  
  .hf-faq-header {
    margin-bottom: 32px;
  }
  
  .hf-faq-accordion {
    margin-top: 16px;
  }
  
  .hf-faq-section .accordion-item {
    margin-bottom: 14px;
  }
  
  .hf-faq-section .accordion-button {
    padding: 16px 20px;
    min-height: 56px;
    font-size: 16px;
  }
  
  .hf-faq-section .accordion-body {
    padding: 18px 20px;
    margin: 0 14px 14px 14px;
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .hf-faq-section .row {
    gap: 0;
  }
  
  .hf-faq-image {
    margin-bottom: 40px;
    height: auto;
  }
  
  .hf-faq-image img {
    max-height: 400px;
  }
  
  .hf-faq-content {
    height: auto;
  }
  
  .hf-faq-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hf-faq-divider {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hf-faq-section {
    padding: 40px 0;
  }
  
  .hf-faq-image {
    margin-bottom: 32px;
  }
  
  .hf-faq-image img {
    max-height: 350px;
    border-radius: 16px;
  }
  
  .hf-faq-header {
    margin-bottom: 32px;
  }
  
  .hf-faq-title {
    font-size: 22px;
    font-weight: 700;
  }
  
  .hf-faq-subtitle {
    font-size: 14px;
  }
  
  .hf-faq-accordion {
    margin-top: 14px;
  }
  
  .hf-faq-section .accordion-item {
    margin-bottom: 12px;
    border-radius: 16px;
  }
  
  .hf-faq-section .accordion-button {
    padding: 14px 16px;
    min-height: 52px;
    font-size: 15px;
  }
  
  .hf-faq-section .accordion-body {
    padding: 16px 18px;
    margin: 0 12px 12px 12px;
    font-size: 14px;
    border-radius: 12px;
  }
  
  .hf-faq-section .hf-chevron {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hf-faq-section {
    padding: 32px 0;
  }
  
  .hf-faq-image {
    margin-bottom: 24px;
  }
  
  .hf-faq-image img {
    max-height: 300px;
    border-radius: 14px;
  }
  
  .hf-faq-header {
    margin-bottom: 24px;
  }
  
  .hf-faq-title {
    font-size: 20px;
    font-weight: 700;
  }
  
  .hf-faq-subtitle {
    font-size: 13px;
  }
  
  .hf-faq-accordion {
    margin-top: 12px;
  }
  
  .hf-faq-section .accordion-item {
    margin-bottom: 10px;
    border-radius: 14px;
  }
  
  .hf-faq-section .accordion-button {
    padding: 12px 14px;
    min-height: 48px;
    font-size: 14px;
  }
  
  .hf-faq-section .accordion-body {
    padding: 14px 16px;
    margin: 0 10px 10px 10px;
    font-size: 13px;
    border-radius: 10px;
  }
  
  .hf-faq-section .hf-chevron {
    font-size: 13px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hf-faq-section .accordion-item {
    transition: none;
  }
  
  .hf-faq-section .accordion-item:hover {
    transform: none;
  }
  
  .hf-faq-section .hf-chevron {
    transition: none;
  }
}

/* ===================== */
/* Why Us Section (HF)   */
/* ===================== */
.hf-whyus-section {
  background: #f9fafb;
  padding: 80px 0;
  position: relative;
}

.hf-whyus-section .container {
  position: relative;
}

/* Header Section */
.hf-whyus-header {
  text-align: center;
  margin-bottom: 60px;
}

.hf-whyus-title {
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 16px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hf-whyus-subtitle {
  font-size: 18px;
  color: #64748b;
  margin: 0 0 24px 0;
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hf-whyus-divider {
  width: 60px;
  height: 3px;
  background: #F59E0B;
  margin: 0 auto;
  border-radius: 2px;
}

/* Grid Layout */
.hf-whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Card */
.hf-whyus-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

.hf-whyus-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: #F59E0B;
}

.hf-whyus-card:hover .hf-whyus-icon {
  background: #111111;
  color: #ffffff;
}

/* Icon */
.hf-whyus-icon {
  width: 48px;
  height: 48px;
  background: #F59E0B;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 300ms ease;
}

.hf-whyus-icon i {
  font-size: 20px;
  line-height: 1;
}

/* Content */
.hf-whyus-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hf-whyus-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.hf-whyus-card-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .hf-whyus-section {
    padding: 60px 0;
  }
  
  .hf-whyus-title {
    font-size: 28px;
    font-weight: 700;
  }
  
  .hf-whyus-subtitle {
    font-size: 16px;
  }
  
  .hf-whyus-grid {
    gap: 20px;
  }
  
  .hf-whyus-card {
    padding: 20px;
  }
}

@media (max-width: 1024px) {
  .hf-whyus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .hf-whyus-header {
    margin-bottom: 50px;
  }
  
  .hf-whyus-title {
    font-size: 26px;
    font-weight: 700;
  }
  
  .hf-whyus-subtitle {
    font-size: 15px;
  }
  
  .hf-whyus-card {
    padding: 18px;
  }
  
  .hf-whyus-card-title {
    font-size: 16px;
  }
  
  .hf-whyus-card-text {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hf-whyus-section {
    padding: 40px 0;
  }
  
  .hf-whyus-header {
    margin-bottom: 40px;
  }
  
  .hf-whyus-title {
    font-size: 24px;
    font-weight: 700;
  }
  
  .hf-whyus-subtitle {
    font-size: 14px;
  }
  
  .hf-whyus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .hf-whyus-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .hf-whyus-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto;
  }
  
  .hf-whyus-icon i {
    font-size: 18px;
  }
  
  .hf-whyus-card-title {
    font-size: 15px;
  }
  
  .hf-whyus-card-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hf-whyus-section {
    padding: 32px 0;
  }
  
  .hf-whyus-header {
    margin-bottom: 32px;
  }
  
  .hf-whyus-title {
    font-size: 22px;
    font-weight: 700;
  }
  
  .hf-whyus-subtitle {
    font-size: 13px;
  }
  
  .hf-whyus-grid {
    gap: 14px;
  }
  
  .hf-whyus-card {
    padding: 14px;
    border-radius: 14px;
  }
  
  .hf-whyus-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  
  .hf-whyus-icon i {
    font-size: 16px;
  }
  
  .hf-whyus-card-title {
    font-size: 14px;
  }
  
  .hf-whyus-card-text {
    font-size: 12px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hf-whyus-card {
    transition: none;
  }
  
  .hf-whyus-card:hover {
    transform: none;
  }
  
  .hf-whyus-icon {
    transition: none;
  }
}

