/* ============================================
   HOME PAGE - Premium Banner with Overlay Form
   ============================================ */

:root {
  --primary-yellow: #e21e28;
  --primary-yellow-hover: #c41e1e;
  --dark-gray: #2D2D2D;
  --black: #2D2D2D;
  --gray: #64748b;
  --muted: #94a3b8;
  --border: #eaeaea;
  --bg: #ffffff;
  --light-bg: #FAFAFA;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   CLK HERO SECTION - Centered Design
   ============================================ */

.clk-hero-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.clk-hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.clk-hero-bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(226, 30, 40, 0.85) 0%, rgba(45, 45, 45, 0.75) 100%);
}

.clk-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.clk-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero Badge */
.clk-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.clk-badge-new {
  background: var(--primary-yellow);
  color: var(--white);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 8px;
}

.clk-badge-text {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Hero Title */
.clk-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Mulish', sans-serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.clk-typing-text {
  color: var(--white);
}

.clk-typing-cursor {
  display: inline-block;
  width: 4px;
  background-color: var(--white);
  animation: blink 1s infinite;
  margin-left: 4px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.clk-hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.clk-hero-subtitle strong {
  color: var(--white);
  font-weight: 600;
}

/* Glass Form Container */
.clk-glass-form-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulseBorder 3s infinite;
}

@keyframes pulseBorder {
  0% {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  50% {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  100% {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

.clk-hero-form {
  margin: 0;
}

.clk-input-icon-group {
  position: relative;
}

.clk-input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 1.1rem;
  color: var(--text-muted);
  pointer-events: none;
}

.clk-form-select {
  height: 52px !important;
  padding-left: 2.5rem !important;
  border-radius: 12px !important;
  background-color: var(--white) !important;
  border: none !important;
  font-size: 0.9375rem !important;
  color: var(--dark-gray) !important;
  font-weight: 600 !important;
  width: 100% !important;
}

.clk-form-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(226, 30, 40, 0.2);
}

/* Nice Select Customization for Hero Form */
.clk-glass-form-container .nice-select {
  height: 52px !important;
  line-height: 40px !important;
  padding-left: 2.5rem !important;
  border-radius: 12px !important;
  background-color: var(--white) !important;
  margin-top: 0 !important;
  float: none !important;
  width: 100% !important;
  font-size: 0.9375rem !important;
  color: var(--dark-gray) !important;
  font-weight: 600 !important;
  border: 1px solid transparent !important;
}

.clk-glass-form-container .nice-select:after {
  height: 8px !important;
  width: 8px !important;
  right: 20px !important;
  border-color: #666 !important;
}

.clk-glass-form-container .nice-select .current {
  line-height: 40px !important;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clk-input-icon-group i {
  pointer-events: none;
}

/* Hero Submit Button */
.clk-btn-hero-submit {
  height: 52px !important;
  border-radius: 12px !important;
  border: none !important;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%) !important;
  color: var(--white) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(226, 30, 40, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.clk-btn-hero-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(226, 30, 40, 0.4) !important;
  background: linear-gradient(135deg, var(--primary-yellow-hover) 0%, #a01a1a 100%) !important;
}

.clk-moving-arrow {
  animation: slideRight 1.5s infinite ease-in-out;
}

@keyframes slideRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

/* Trust Badges */
.clk-trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.clk-trust-badge {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 20px 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.clk-trust-badge-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.clk-trust-badge-icon i {
  font-size: 18px;
}

.clk-trust-badge-content {
  line-height: 1.2;
  text-align: left;
}

.clk-trust-badge-title {
  font-weight: 700;
  color: var(--dark-gray);
  font-size: 13px;
  margin-bottom: 2px;
}

.clk-trust-badge-desc {
  color: var(--text-muted);
  font-size: 11px;
}

/* ============================================
   CLK FEATURES SECTION - Professional Design
   ============================================ */

.clk-features-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
}

.clk-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .clk-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .clk-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.clk-feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.clk-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clk-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(226, 30, 40, 0.02) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.clk-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(226, 30, 40, 0.15);
  border-color: rgba(226, 30, 40, 0.2);
}

.clk-feature-card:hover::before {
  transform: scaleX(1);
}

.clk-feature-card:hover::after {
  opacity: 1;
}

/* Feature Icon */
.clk-feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(226, 30, 40, 0.1) 0%, rgba(226, 30, 40, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(226, 30, 40, 0.1);
}

.clk-feature-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-hover));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.clk-feature-card:hover .clk-feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  transform: scale(1.1) rotate(5deg);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(226, 30, 40, 0.25);
}

.clk-feature-card:hover .clk-feature-icon-wrapper::before {
  opacity: 1;
}

.clk-feature-icon {
  font-size: 2rem;
  color: var(--primary-yellow);
  z-index: 1;
  transition: all 0.4s ease;
  position: relative;
}

.clk-feature-card:hover .clk-feature-icon {
  color: var(--white);
  transform: scale(1.1);
}

/* Feature Title */
.clk-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin: 0 0 1rem;
  font-family: 'Mulish', sans-serif;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.clk-feature-card:hover .clk-feature-title {
  color: var(--primary-yellow);
}

/* Feature Description */
.clk-feature-desc {
  font-size: 0.9375rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.7;
  font-family: 'Mulish', sans-serif;
  transition: color 0.3s ease;
}

.clk-feature-card:hover .clk-feature-desc {
  color: #555;
}

/* Modern Features Section Redesign */
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-yellow);
  border-radius: 2px;
  margin-top: 15px;
}

.max-width-600 {
  max-width: 600px;
}

.modern-feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-feature-card.highlight {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #c41e1e 100%);
  border: none;
  box-shadow: 0 15px 35px rgba(226, 30, 40, 0.25);
}

.feature-icon-box {
  margin-bottom: 25px;
}

.icon-circle {
  width: 65px;
  height: 65px;
  background: rgba(226, 30, 40, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-yellow);
  transition: all 0.3s ease;
}

.modern-feature-card.highlight .icon-circle {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.feature-text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.04);
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.modern-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.modern-feature-card.highlight:hover {
  box-shadow: 0 20px 45px rgba(226, 30, 40, 0.4);
}

.modern-feature-card:hover .icon-circle {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-yellow);
  color: #fff;
}

.modern-feature-card.highlight:hover .icon-circle {
  background: #fff;
  color: var(--primary-yellow);
}

.modern-feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.modern-feature-card:hover::before {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .clk-hero-section {
    min-height: 65vh;
    padding: 50px 0;
  }

  .clk-hero-title {
    font-size: 2.5rem;
  }

  .clk-features-grid {
    gap: 1.5rem;
  }

  .clk-feature-card {
    padding: 2rem 1.5rem;
  }

  .clk-feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }

  .clk-feature-icon {
    font-size: 1.75rem;
  }

  .clk-feature-title {
    font-size: 1.125rem;
  }

  .clk-feature-desc {
    font-size: 0.875rem;
  }
}

@media (max-width: 991.98px) {
  .clk-hero-section {
    min-height: 60vh;
    padding: 40px 0;
  }

  .clk-hero-title {
    font-size: 2.25rem;
  }

  .clk-hero-subtitle {
    font-size: 0.9375rem;
  }
}

@media (max-width: 767.98px) {
  .clk-hero-section {
    min-height: 55vh;
    padding: 30px 0;
  }

  .clk-hero-title {
    font-size: 2rem;
  }

  .clk-hero-subtitle {
    font-size: 0.875rem;
  }

  .clk-glass-form-container {
    padding: 16px;
  }

  .clk-form-select {
    height: 50px !important;
    font-size: 0.9375rem !important;
  }

  .clk-btn-hero-submit {
    height: 50px !important;
    font-size: 1rem !important;
  }

  .clk-trust-badges {
    gap: 16px;
  }

  .clk-trust-badge {
    padding: 6px 16px 6px 6px;
  }

  .clk-trust-badge-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .clk-trust-badge-title {
    font-size: 12px;
  }

  .clk-trust-badge-desc {
    font-size: 10px;
  }
}

@media (max-width: 767.98px) {
  .clk-features-section {
    padding: 2.5rem 0;
  }

  .clk-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .clk-feature-card {
    padding: 2rem 1.5rem;
  }

  .clk-feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }

  .clk-feature-icon {
    font-size: 1.75rem;
  }

  .clk-feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
  }

  .clk-feature-desc {
    font-size: 0.875rem;
  }
}


@media (max-width: 991.98px) {
  .home-hero-image-wrapper {
    height: 500px;
  }

  .home-hero-form-overlay .container {
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-hero-form-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .home-hero-form-card {
    border-radius: 20px;
  }

  .hhf-header {
    padding: 1.75rem 2rem 1.25rem;
  }

  .hhf-title {
    font-size: 1.5rem;
  }

  .hhf-slogan {
    font-size: 0.9375rem;
  }

  .hhf-card {
    padding: 2rem;
  }

  .home-hero__arrows {
    padding: 0 1rem;
  }

  .home-hero__arrow {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 767.98px) {
  .home-hero-image-wrapper {
    height: 450px;
  }

  .home-hero-form-card {
    border-radius: 18px;
    backdrop-filter: blur(15px);
  }

  .hhf-header {
    padding: 1.5rem 1.75rem 1rem;
  }

  .hhf-title {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
  }

  .hhf-slogan {
    font-size: 0.875rem;
    min-height: 1.375rem;
  }

  .hhf-card {
    padding: 1.5rem;
  }

  .hhf-form-group {
    margin-bottom: 1rem;
  }

  .form-select-minimal {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    border-radius: 12px;
  }

  .btn-minimal-primary {
    padding: 1rem 1.75rem;
    font-size: 0.9375rem;
    border-radius: 12px;
  }

  .home-hero__arrows {
    padding: 0 0.75rem;
  }

  .home-hero__arrow {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .home-hero-image-wrapper {
    height: 400px;
  }

  .home-hero-form-wrapper {
    padding: 0 0.75rem;
  }

  .home-hero-form-card {
    border-radius: 16px;
  }

  .hhf-header {
    padding: 1.25rem 1.5rem 1rem;
  }

  .hhf-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .hhf-slogan {
    font-size: 0.8125rem;
    min-height: 1.25rem;
  }

  .hhf-card {
    padding: 1.25rem;
  }

  .hhf-form-group {
    margin-bottom: 0.875rem;
  }

  .form-select-minimal {
    padding: 0.8125rem 0.9375rem;
    font-size: 0.8125rem;
    border-radius: 10px;
  }

  .btn-minimal-primary {
    padding: 0.9375rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 10px;
  }

  .home-hero__arrow {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.9375rem;
  }

  .home-hero__pagination {
    bottom: 1rem;
  }

  .home-hero__pagination .swiper-pagination-bullet {
    width: 0.625rem;
    height: 0.625rem;
    margin: 0 0.25rem;
  }

  .home-hero__pagination .swiper-pagination-bullet-active {
    width: 1.5rem;
  }

  /* Features Section - Extra Small Screens */
  .home-features-section {
    padding: 1.25rem 0;
  }

  .home-features-grid {
    gap: 0.625rem;
  }

  .home-feature-card {
    min-height: 130px;
  }

  .feature-number {
    width: 28px;
    height: 28px;
    font-size: 0.625rem;
    top: -0.375rem;
    left: -0.375rem;
    display: none;
  }

  .feature-content {
    padding: 0.875rem;
  }

  .feature-icon-wrapper {
    width: 32px;
    height: 32px;
    margin-bottom: 0.375rem;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.12) 0%, rgba(45, 45, 45, 0.06) 100%);
    border: 1px solid rgba(45, 45, 45, 0.15);
  }

  .feature-icon {
    font-size: 0.75rem;
    color: #2D2D2D;
  }

  .home-feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.18) 0%, rgba(45, 45, 45, 0.1) 100%);
    border-color: rgba(45, 45, 45, 0.25);
  }

  .home-feature-card:hover .feature-icon {
    color: #1a1a1a;
  }

  .feature-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }

  .feature-desc {
    font-size: 0.6875rem;
  }

  .feature-image {
    height: 130px;
    min-height: 130px;
  }
}

/* ============================================
   CLK FEATURED CARS SECTION - PROFESSIONAL DESIGN
   ============================================ */

.clk-featured-cars-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
}

/* Header Styles */
.clk-featured-header {
  margin-bottom: 3rem;
}

.clk-featured-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.clk-featured-header-left {
  flex: 1;
  min-width: 280px;
}

.clk-featured-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin: 0 0 0.75rem;
  font-family: 'Mulish', sans-serif;
  letter-spacing: -0.02em;
}

.clk-featured-subtitle {
  font-size: 1rem;
  color: var(--gray);
  margin: 0;
  font-family: 'Mulish', sans-serif;
  line-height: 1.6;
}

.clk-featured-header-right {
  display: flex;
  align-items: center;
}

.clk-featured-stats {
  background: var(--white);
  border: 2px solid rgba(226, 30, 40, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.clk-featured-stats:hover {
  border-color: rgba(226, 30, 40, 0.2);
  box-shadow: 0 8px 24px rgba(226, 30, 40, 0.1);
  transform: translateY(-2px);
}

.clk-stats-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clk-stats-icon i {
  font-size: 1.25rem;
  color: var(--white);
}

.clk-stats-content {
  display: flex;
  flex-direction: column;
}

.clk-stats-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-gray);
  font-family: 'Mulish', sans-serif;
  line-height: 1.2;
}

.clk-stats-text {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 0.25rem;
  font-family: 'Mulish', sans-serif;
}

/* Slider Container */
.clk-featured-slider-container {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.clk-featured-swiper {
  overflow: visible;
  padding-bottom: 1rem;
}

.clk-featured-swiper .swiper-wrapper {
  align-items: stretch;
}

.clk-featured-swiper .swiper-slide {
  height: auto;
}

/* Car Card Styles */
.clk-featured-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.clk-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.clk-featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(226, 30, 40, 0.15);
  border-color: rgba(226, 30, 40, 0.2);
}

.clk-featured-card:hover::before {
  transform: scaleX(1);
}

/* Car Image */
.clk-featured-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 640 / 500;
  background: rgba(0, 0, 0, 0.02);
}

.clk-featured-image a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.clk-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.clk-featured-card:hover .clk-featured-image img {
  transform: scale(1.08);
}

.clk-featured-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(226, 30, 40, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.clk-featured-card:hover .clk-featured-image-overlay {
  opacity: 1;
}

.clk-featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(226, 30, 40, 0.3);
  z-index: 2;
  font-family: 'Mulish', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.clk-featured-badge i {
  font-size: 0.875rem;
}

/* Car Content */
.clk-featured-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.clk-featured-title-card {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: 'Mulish', sans-serif;
}

.clk-featured-title-card a {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clk-featured-card:hover .clk-featured-title-card a {
  color: var(--primary-yellow);
}

/* Car Footer */
.clk-featured-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.clk-featured-price-wrapper {
  width: 100%;
  text-align: center;
}

.clk-featured-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-gray);
  font-family: 'Mulish', sans-serif;
  line-height: 1.2;
}


/* Navigation Buttons */
.clk-featured-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.clk-featured-button-prev,
.clk-featured-button-next {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--white);
  border: 2px solid rgba(226, 30, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--dark-gray);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.clk-featured-button-prev:hover,
.clk-featured-button-next:hover {
  background: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 30, 40, 0.25);
}

.clk-featured-button-prev.swiper-button-disabled,
.clk-featured-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.clk-featured-button-prev.swiper-button-disabled:hover,
.clk-featured-button-next.swiper-button-disabled:hover {
  transform: none;
  background: var(--white);
  border-color: rgba(226, 30, 40, 0.1);
  color: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .clk-featured-cars-section {
    padding: 3rem 0;
  }

  .clk-featured-header {
    margin-bottom: 2rem;
  }

  .clk-featured-title {
    font-size: 1.75rem;
  }

  .clk-featured-stats {
    padding: 1rem 1.5rem;
  }

  .clk-stats-icon {
    width: 45px;
    height: 45px;
  }

  .clk-stats-number {
    font-size: 1.5rem;
  }

  .clk-featured-card {
    border-radius: 18px;
  }

  .clk-featured-content {
    padding: 1.25rem;
  }

  .clk-featured-title-card {
    font-size: 1rem;
  }

  .clk-featured-price {
    font-size: 1.375rem;
  }
}

@media (max-width: 767.98px) {
  .clk-featured-cars-section {
    padding: 2.5rem 0;
  }

  .clk-featured-header {
    margin-bottom: 1.5rem;
  }

  .clk-featured-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .clk-featured-title {
    font-size: 1.5rem;
  }

  .clk-featured-subtitle {
    font-size: 0.9375rem;
  }

  .clk-featured-stats {
    width: 100%;
    padding: 1rem 1.25rem;
  }

  .clk-stats-icon {
    width: 40px;
    height: 40px;
  }

  .clk-stats-icon i {
    font-size: 1.125rem;
  }

  .clk-stats-number {
    font-size: 1.375rem;
  }

  .clk-featured-slider-container {
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  .clk-featured-card {
    border-radius: 16px;
  }

  .clk-featured-content {
    padding: 1.25rem;
  }

  .clk-featured-footer {
    justify-content: center;
  }

  .clk-featured-price {
    font-size: 1.25rem;
  }

  .clk-featured-nav {
    margin-top: 2rem;
  }

  .clk-featured-button-prev,
  .clk-featured-button-next {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 575.98px) {
  .clk-featured-cars-section {
    padding: 2rem 0;
  }

  .clk-featured-title {
    font-size: 1.375rem;
  }

  .clk-featured-card {
    border-radius: 14px;
  }

  .clk-featured-badge {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.4375rem 0.875rem;
    font-size: 0.6875rem;
  }

  .clk-featured-content {
    padding: 1rem;
  }

  .clk-featured-title-card {
    font-size: 0.9375rem;
    margin-bottom: 0.875rem;
  }

  .clk-featured-price {
    font-size: 1.125rem;
  }

  .clk-featured-btn {
    font-size: 0.75rem;
    padding: 0.625rem 1rem;
  }
}

/* ============================================
   NEDEN BİZ SECTION - PREMIUM DESIGN
   ============================================ */

.hf-whyus-section {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.01);
}

.hf-whyus-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hf-whyus-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin: 0 0 0.75rem;
  font-family: 'Mulish', sans-serif;
  letter-spacing: -0.01em;
}

.hf-whyus-subtitle {
  font-size: 1rem;
  color: var(--gray);
  margin: 0;
  font-family: 'Mulish', sans-serif;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hf-whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hf-whyus-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.hf-whyus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: rgba(45, 45, 45, 0.1);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hf-whyus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.hf-whyus-card:hover::before {
  transform: scaleY(1);
}

.hf-whyus-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(45, 45, 45, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hf-whyus-card:hover .hf-whyus-icon-wrapper {
  background: rgba(45, 45, 45, 0.08);
  transform: scale(1.05);
}

.hf-whyus-icon-wrapper i {
  font-size: 1.5rem;
  color: rgba(45, 45, 45, 0.6);
  transition: all 0.4s ease;
}

.hf-whyus-card:hover .hf-whyus-icon-wrapper i {
  color: rgba(45, 45, 45, 0.9);
  transform: scale(1.1);
}

.hf-whyus-content {
  flex: 1;
}

.hf-whyus-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0 0 0.5rem;
  font-family: 'Mulish', sans-serif;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.hf-whyus-card:hover .hf-whyus-card-title {
  color: rgba(45, 45, 45, 0.9);
}

.hf-whyus-card-text {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
  font-family: 'Mulish', sans-serif;
}

/* Neden Biz Section - Responsive */
@media (max-width: 991.98px) {
  .hf-whyus-section {
    padding: 3rem 0;
  }

  .hf-whyus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .hf-whyus-title {
    font-size: 1.5rem;
  }

  .hf-whyus-subtitle {
    font-size: 0.9375rem;
  }

  .hf-whyus-card {
    padding: 1.5rem;
  }

  .hf-whyus-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .hf-whyus-icon-wrapper i {
    font-size: 1.25rem;
  }

  .hf-whyus-card-title {
    font-size: 1rem;
  }

  .hf-whyus-card-text {
    font-size: 0.8125rem;
  }
}

@media (max-width: 767.98px) {
  .hf-whyus-section {
    padding: 2.5rem 0;
  }

  .hf-whyus-header {
    margin-bottom: 2rem;
  }

  .hf-whyus-title {
    font-size: 1.375rem;
  }

  .hf-whyus-subtitle {
    font-size: 0.875rem;
  }

  .hf-whyus-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hf-whyus-card {
    padding: 1.25rem;
    gap: 1rem;
  }

  .hf-whyus-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .hf-whyus-icon-wrapper i {
    font-size: 1.125rem;
  }

  .hf-whyus-card-title {
    font-size: 0.9375rem;
  }

  .hf-whyus-card-text {
    font-size: 0.8125rem;
  }
}

@media (max-width: 575.98px) {
  .hf-whyus-section {
    padding: 2rem 0;
  }

  .hf-whyus-title {
    font-size: 1.25rem;
  }

  .hf-whyus-card {
    padding: 1rem;
    border-radius: 12px;
  }

  .hf-whyus-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .hf-whyus-icon-wrapper i {
    font-size: 1rem;
  }
}

/* ============================================
   CLK REVIEWS SECTION - PROFESSIONAL DESIGN
   ============================================ */

.clk-reviews-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
}

.clk-reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.clk-reviews-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin: 0 0 0.75rem;
  font-family: 'Mulish', sans-serif;
  letter-spacing: -0.02em;
}

.clk-reviews-subtitle {
  font-size: 1rem;
  color: var(--gray);
  margin: 0;
  font-family: 'Mulish', sans-serif;
  line-height: 1.6;
}

.clk-reviews-slider-container {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.clk-reviews-swiper {
  overflow: visible;
  padding-bottom: 1rem;
}

.clk-reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

.clk-reviews-swiper .swiper-slide {
  height: auto;
}

.clk-review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.clk-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clk-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(226, 30, 40, 0.12);
  border-color: rgba(226, 30, 40, 0.15);
}

.clk-review-card:hover::before {
  transform: scaleX(1);
}

.clk-review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.clk-review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(226, 30, 40, 0.2);
  transition: all 0.3s ease;
}

.clk-review-card:hover .clk-review-avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(226, 30, 40, 0.3);
}

.clk-review-avatar-initial {
  font-size: 1.5rem;
  color: var(--white);
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.clk-review-info {
  flex: 1;
  min-width: 0;
}

.clk-review-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin: 0 0 0.5rem;
  font-family: 'Mulish', sans-serif;
  line-height: 1.3;
}

.clk-review-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.clk-review-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.clk-review-stars i {
  font-size: 0.9375rem;
  color: #FFB800;
  line-height: 1;
}

.clk-review-date {
  font-size: 0.8125rem;
  color: var(--gray);
  font-family: 'Mulish', sans-serif;
  font-weight: 500;
}

.clk-review-content {
  position: relative;
  flex: 1;
  padding-top: 1rem;
}

.clk-review-quote {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(226, 30, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.clk-review-quote i {
  font-size: 1.125rem;
  color: var(--primary-yellow);
}

.clk-review-text {
  font-size: 0.9375rem;
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.8;
  font-family: 'Mulish', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-left: 2.5rem;
}

/* Navigation Buttons */
.clk-reviews-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.clk-reviews-button-prev,
.clk-reviews-button-next {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--white);
  border: 2px solid rgba(226, 30, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--dark-gray);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.clk-reviews-button-prev:hover,
.clk-reviews-button-next:hover {
  background: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 30, 40, 0.25);
}

.clk-reviews-button-prev.swiper-button-disabled,
.clk-reviews-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.clk-reviews-button-prev.swiper-button-disabled:hover,
.clk-reviews-button-next.swiper-button-disabled:hover {
  transform: none;
  background: var(--white);
  border-color: rgba(226, 30, 40, 0.1);
  color: var(--dark-gray);
}

.clk-reviews-pagination {
  margin-top: 2rem;
}

.clk-reviews-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 0.375rem;
}

.clk-reviews-pagination .swiper-pagination-bullet-active {
  background: var(--primary-yellow);
  width: 24px;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .clk-reviews-section {
    padding: 3rem 0;
  }

  .clk-reviews-title {
    font-size: 1.75rem;
  }

  .clk-reviews-subtitle {
    font-size: 0.9375rem;
  }

  .clk-review-card {
    padding: 1.75rem;
  }

  .clk-review-avatar {
    width: 55px;
    height: 55px;
  }

  .clk-review-avatar-initial {
    font-size: 1.375rem;
  }
}

@media (max-width: 767.98px) {
  .clk-reviews-section {
    padding: 2.5rem 0;
  }

  .clk-reviews-header {
    margin-bottom: 2rem;
  }

  .clk-reviews-title {
    font-size: 1.5rem;
  }

  .clk-reviews-subtitle {
    font-size: 0.875rem;
  }

  .clk-review-card {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .clk-review-avatar {
    width: 50px;
    height: 50px;
  }

  .clk-review-avatar-initial {
    font-size: 1.25rem;
  }

  .clk-review-name {
    font-size: 1rem;
  }

  .clk-review-text {
    font-size: 0.875rem;
    padding-left: 2rem;
    -webkit-line-clamp: 4;
  }

  .clk-review-quote {
    width: 35px;
    height: 35px;
  }

  .clk-review-quote i {
    font-size: 1rem;
  }

  .clk-reviews-nav {
    margin-top: 2rem;
  }

  .clk-reviews-button-prev,
  .clk-reviews-button-next {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 575.98px) {
  .clk-reviews-section {
    padding: 2rem 0;
  }

  .clk-reviews-title {
    font-size: 1.375rem;
  }

  .clk-review-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .clk-review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 12px;
  }

  .clk-review-avatar-initial {
    font-size: 1.125rem;
  }

  .clk-review-name {
    font-size: 0.9375rem;
  }

  .clk-review-stars i {
    font-size: 0.8125rem;
  }

  .clk-review-date {
    font-size: 0.75rem;
  }

  .clk-review-text {
    font-size: 0.8125rem;
    padding-left: 1.75rem;
  }

  .clk-review-quote {
    width: 30px;
    height: 30px;
  }

  .clk-review-quote i {
    font-size: 0.875rem;
  }
}

/* ============================================
   CLK FAQ SECTION - PROFESSIONAL CENTERED DESIGN
   ============================================ */

.clk-faq-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.clk-faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.clk-faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.clk-faq-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin: 0 0 0.75rem;
  font-family: 'Mulish', sans-serif;
  letter-spacing: -0.02em;
}

.clk-faq-subtitle {
  font-size: 1rem;
  color: var(--gray);
  margin: 0;
  font-family: 'Mulish', sans-serif;
  line-height: 1.6;
}

.clk-faq-accordion {
  margin-top: 0;
}

.clk-accordion-item {
  border: 2px solid transparent;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.clk-accordion-item:hover {
  border-color: rgba(226, 30, 40, 0.2);
  box-shadow: 0 6px 24px rgba(226, 30, 40, 0.12);
  transform: translateY(-2px);
}

.clk-accordion-button {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-gray);
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Mulish', sans-serif;
  box-shadow: none !important;
}

.clk-accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
  outline: none;
}

.clk-accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(226, 30, 40, 0.05) 0%, rgba(226, 30, 40, 0.02) 100%);
  color: var(--dark-gray);
  box-shadow: none !important;
}

.clk-accordion-button:not(.collapsed)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
}

.clk-accordion-button:hover {
  background: rgba(226, 30, 40, 0.03);
}

.clk-accordion-button:not(.collapsed):hover {
  background: linear-gradient(135deg, rgba(226, 30, 40, 0.08) 0%, rgba(226, 30, 40, 0.04) 100%);
}

.clk-question-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(226, 30, 40, 0.1) 0%, rgba(226, 30, 40, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 2px solid rgba(226, 30, 40, 0.1);
}

.clk-question-icon i {
  font-size: 1.125rem;
  color: var(--primary-yellow);
}

.clk-accordion-button:not(.collapsed) .clk-question-icon {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  border-color: transparent;
  transform: scale(1.05);
}

.clk-accordion-button:not(.collapsed) .clk-question-icon i {
  color: var(--white);
}

.clk-question-text {
  flex: 1;
  line-height: 1.5;
  font-weight: 600;
}

.clk-accordion-chevron {
  font-size: 1rem;
  color: var(--gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.03);
}

.clk-accordion-button:not(.collapsed) .clk-accordion-chevron {
  transform: rotate(180deg);
  color: var(--primary-yellow);
  background: rgba(226, 30, 40, 0.1);
}

.clk-accordion-body {
  padding: 0 1.75rem 1.5rem 5.5rem;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.8;
  font-family: 'Mulish', sans-serif;
  background: transparent;
}

.clk-accordion-body p {
  margin-bottom: 1rem;
}

.clk-accordion-body p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .clk-faq-section {
    padding: 3rem 0;
  }

  .clk-faq-wrapper {
    max-width: 100%;
  }

  .clk-faq-title {
    font-size: 1.75rem;
  }

  .clk-faq-subtitle {
    font-size: 0.9375rem;
  }

  .clk-accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
  }

  .clk-question-icon {
    width: 40px;
    height: 40px;
  }

  .clk-question-icon i {
    font-size: 1rem;
  }

  .clk-accordion-body {
    padding: 0 1.5rem 1.25rem 5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 767.98px) {
  .clk-faq-section {
    padding: 2.5rem 0;
  }

  .clk-faq-header {
    margin-bottom: 2rem;
  }

  .clk-faq-title {
    font-size: 1.5rem;
  }

  .clk-faq-subtitle {
    font-size: 0.875rem;
  }

  .clk-accordion-item {
    border-radius: 14px;
    margin-bottom: 0.875rem;
  }

  .clk-accordion-button {
    padding: 1.125rem 1.25rem;
    font-size: 0.875rem;
    gap: 0.875rem;
  }

  .clk-question-icon {
    width: 36px;
    height: 36px;
  }

  .clk-question-icon i {
    font-size: 0.9375rem;
  }

  .clk-accordion-chevron {
    width: 22px;
    height: 22px;
    font-size: 0.875rem;
  }

  .clk-accordion-body {
    padding: 0 1.25rem 1.125rem 4.5rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 575.98px) {
  .clk-faq-section {
    padding: 2rem 0;
  }

  .clk-faq-title {
    font-size: 1.375rem;
  }

  .clk-accordion-item {
    border-radius: 12px;
  }

  .clk-accordion-button {
    padding: 1rem 1.125rem;
    font-size: 0.8125rem;
    gap: 0.75rem;
  }

  .clk-question-icon {
    width: 32px;
    height: 32px;
  }

  .clk-question-icon i {
    font-size: 0.875rem;
  }

  .clk-accordion-chevron {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  .clk-accordion-body {
    padding: 0 1.125rem 1rem 4rem;
    font-size: 0.8125rem;
  }
}

/* ============================================
   MARQUEE TEXT SECTION - MODERN SWIPER DESIGN
   ============================================ */

.hf-marquee-section {
  padding: 2rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hf-marquee-section::before,
.hf-marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.hf-marquee-section::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.hf-marquee-section::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.hf-marquee-swiper {
  overflow: visible;
}

.hf-marquee-swiper .swiper-wrapper {
  align-items: center;
}

.hf-marquee-swiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hf-marquee-text {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 72px;
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Mulish', sans-serif;
  white-space: nowrap;
  will-change: transform;
}

.hf-marquee-label {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  transform: translateZ(0);
}

.hf-marquee-swiper:hover .hf-marquee-label {
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.25);
  transform: translateZ(0) scale(1.02);
}

.hf-marquee-dot {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
  transform: translateZ(0);
}

.hf-marquee-swiper:hover .hf-marquee-dot {
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateZ(0) scale(1.1);
}

.pb-60px {
  padding-bottom: 40px;
}

.marquee-slide {
  transition-timing-function: linear;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hf-marquee-section {
    padding: 1.75rem 0;
  }

  .hf-marquee-text {
    font-size: 56px;
    gap: 24px;
  }

  .hf-marquee-dot {
    width: 14px;
    height: 14px;
    border-width: 1.5px;
  }

  .pb-60px {
    padding-bottom: 32px;
  }
}

@media (max-width: 767.98px) {

  .hf-marquee-section::before,
  .hf-marquee-section::after {
    width: 60px;
  }

  .hf-marquee-text {
    font-size: 42px;
    gap: 18px;
  }

  .hf-marquee-label {
    -webkit-text-stroke: 1.2px rgba(0, 0, 0, 0.15);
  }

  .hf-marquee-swiper:hover .hf-marquee-label {
    -webkit-text-stroke: 1.2px rgba(0, 0, 0, 0.25);
  }

  .hf-marquee-dot {
    width: 12px;
    height: 12px;
    border-width: 1.5px;
  }

  .pb-60px {
    padding-bottom: 24px;
  }

  .sm-pb-30px {
    padding-bottom: 24px;
  }
}

@media (max-width: 575.98px) {

  .hf-marquee-section::before,
  .hf-marquee-section::after {
    width: 40px;
  }

  .hf-marquee-section {
    padding: 1.25rem 0;
  }

  .hf-marquee-text {
    font-size: 32px;
    gap: 15px;
  }

  .hf-marquee-label {
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
  }

  .hf-marquee-swiper:hover .hf-marquee-label {
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.25);
  }

  .hf-marquee-dot {
    width: 10px;
    height: 10px;
    border-width: 1px;
  }

  .pb-60px {
    padding-bottom: 20px;
  }

  .sm-pb-30px {
    padding-bottom: 20px;
  }

  /* CLK Hero Responsive */
  .clk-hero-section {
    min-height: 70vh;
  }

  .clk-hero-title {
    font-size: 2rem;
  }

  .clk-hero-subtitle {
    font-size: 0.9375rem;
  }

  .clk-glass-form-container {
    padding: 16px;
  }

  .clk-form-select {
    height: 50px !important;
    font-size: 0.9375rem !important;
  }

  .clk-btn-hero-submit {
    height: 50px !important;
    font-size: 0.9375rem !important;
  }

  .clk-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ============================================
   MINIMALIST REVIEWS STYLE (ADDED)
   ============================================ */

.clk-review-card.minimalist {
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 2.5rem;
  border-radius: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.clk-review-card.minimalist:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(226, 30, 40, 0.1);
}

.clk-review-card.minimalist .clk-review-content {
  padding: 0;
  flex-grow: 1;
}

.clk-review-card.minimalist .clk-review-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4b5563;
  font-style: italic;
  font-weight: 300;
  padding-left: 0;
  margin-bottom: 1.5rem;
  font-family: 'Mulish', serif;
}

.clk-review-card.minimalist .clk-review-rating i {
  font-size: 14px;
}

.clk-review-card.minimalist .clk-review-footer {
  border-top: 1px solid #f7f7f7;
  padding-top: 1.5rem;
  margin-top: auto;
}

.clk-review-card.minimalist .clk-review-avatar-initial {
  background-color: #fff1f2 !important;
  color: #e21e28 !important;
  font-size: 18px;
  border: 1px solid rgba(226, 30, 40, 0.1);
}

.clk-review-card.minimalist .clk-review-name {
  font-weight: 700;
  color: #1f2937;
  font-size: 1rem;
}

.clk-review-card.minimalist .clk-review-date {
  font-size: 0.8rem;
  color: #9ca3af;
}

.clk-reviews-swiper {
  padding: 20px 10px 50px !important;
}

@media (max-width: 768px) {
  .clk-review-card.minimalist {
    padding: 1.5rem;
  }
}

/* ============================================
   BRAND SLIDER STYLES
   ============================================ */
.clk-brands-section {
  background-color: #f8f9fa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.clk-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 10px;
  transition: all 0.3s ease;
  opacity: 0.6;
  filter: grayscale(100%);
}

.clk-brand-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.clk-brand-item img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
}

/* Continuous scroll animation fix for swiper */
.clk-brands-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

/* ============================================
   HOW IT WORKS (STEPS) STYLES
   ============================================ */
.clk-steps-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.clk-steps-row {
  margin-top: 3rem;
}

.clk-steps-line {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #ddd 0, #ddd 10px, transparent 10px, transparent 20px);
  z-index: 0;
}

.clk-step-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #eee;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.clk-step-card:hover {
  transform: translateY(-10px);
}

.clk-step-image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.clk-step-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.clk-step-card:hover .clk-step-image-wrapper img {
  transform: scale(1.1);
}

.clk-step-number {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.clk-step-number.success {
  background: #28a745;
}

.clk-step-title {
  font-weight: 700;
  color: #333;
  font-size: 1.25rem;
}

.clk-step-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-yellow);
  border-radius: 2px;
}