/* ==========================================================================
   KONYA EXTREME - ELEMENTOR WIDGET STYLES
   ========================================================================== */

/* ==========================================================================
   KE HERO SLIDER
   ========================================================================== */
.ke-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Slide Backgrounds ── */
.ke-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ke-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              transform 7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.ke-hero__slide--active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay */
.ke-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 11, 0.4) 0%,
    rgba(9, 9, 11, 0.65) 50%,
    rgba(9, 9, 11, 0.85) 100%
  );
  z-index: 2;
}

/* ── Content Layer ── */
.ke-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 24px 100px;
  text-align: center;
}

/* ── Panels (her slide'ın text içeriği) ── */
.ke-hero__panel {
  display: none;
  animation: none;
}

.ke-hero__panel--active {
  display: block;
  animation: keHeroFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes keHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Badge (Üst Rozet) ── */
.ke-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 8px 22px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FBBF24;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ke-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FBBF24;
  display: inline-block;
  animation: keBadgePulse 2s ease-in-out infinite;
}

@keyframes keBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ── Title ── */
.ke-hero__title {
  font-family: 'Sora', sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  color: #FFFFFF;
  margin: 0 0 22px 0;
  letter-spacing: -0.02em;
}

.ke-hero__title span {
  color: #FBBF24;
  position: relative;
}

/* ── Description ── */
.ke-hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ── Buttons ── */
.ke-hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ke-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.02em;
}

.ke-hero__btn svg {
  flex-shrink: 0;
}

/* WhatsApp Button */
.ke-hero__btn--whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35),
              0 0 0 0 rgba(37, 211, 102, 0);
}

.ke-hero__btn--whatsapp:hover {
  background: #1FAD54;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4),
              0 0 0 4px rgba(37, 211, 102, 0.1);
}

/* Gold Button */
.ke-hero__btn--gold {
  background: #F59E0B;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.ke-hero__btn--gold:hover {
  background: #D97706;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

/* Dark Button */
.ke-hero__btn--dark {
  background: #18181B;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ke-hero__btn--dark:hover {
  background: #27272A;
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* Outline Button */
.ke-hero__btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 13px 30px;
}

.ke-hero__btn--outline:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* ── Bottom Badges ── */
.ke-hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.ke-hero__badge-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.ke-hero__badge-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.ke-hero__badge-item i,
.ke-hero__badge-item svg {
  color: #FBBF24 !important;
  fill: #FBBF24;
  font-size: 16px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Navigation Dots ── */
.ke-hero__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ke-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.ke-hero__dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.ke-hero__dot--active {
  background: #FBBF24;
  width: 32px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}

/* ── Scroll Down Indicator ── */
.ke-hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ke-hero__scroll::before {
  content: 'SCROLL';
  font-family: 'Sora', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

.ke-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.ke-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #FBBF24;
  animation: keScrollLine 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes keScrollLine {
  0% { top: -50%; }
  100% { top: 120%; }
}

/* ==========================================================================
   RESPONSIVE - HERO SLIDER
   ========================================================================== */
@media (max-width: 1024px) {
  .ke-hero__title {
    font-size: 42px;
  }
  .ke-hero__desc {
    font-size: 16px;
  }
  .ke-hero__badges {
    gap: 20px;
  }
  .ke-hero__scroll {
    display: none;
  }
}

@media (max-width: 768px) {
  .ke-hero__content {
    padding: 100px 20px 90px;
  }
  .ke-hero__title {
    font-size: 32px;
    line-height: 1.18;
    margin-bottom: 18px;
  }
  .ke-hero__desc {
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.7;
  }
  .ke-hero__badge {
    font-size: 10px;
    padding: 6px 16px;
    margin-bottom: 22px;
  }
  .ke-hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .ke-hero__btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 13px;
  }
  .ke-hero__badges {
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
    padding-top: 24px;
  }
  .ke-hero__dots {
    bottom: 24px;
  }
  .ke-hero__dot {
    width: 8px;
    height: 8px;
  }
  .ke-hero__dot--active {
    width: 26px;
  }
}

@media (max-width: 480px) {
  .ke-hero__title {
    font-size: 26px;
  }
  .ke-hero__desc {
    font-size: 14px;
  }
}


/* ==========================================================================
   KE STATS COUNTER
   ========================================================================== */
/* Elementor container override - tüm parent chain */
.elementor-section:has(.ke-stats),
.elementor-container:has(.ke-stats),
.elementor-column:has(.ke-stats),
.elementor-widget-wrap:has(.ke-stats),
.e-con:has(.ke-stats) {
  max-width: 100% !important;
  width: 100% !important;
}
.elementor-widget-ke_stats_counter {
  width: 100% !important;
  max-width: 100% !important;
}
.elementor-widget-ke_stats_counter > .elementor-widget-container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ke-stats {
  display: block !important;
  padding: 48px 0;
  width: 100% !important;
  box-sizing: border-box;
}

.ke-stats--dark {
  background: #18181B;
}

.ke-stats--gold {
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 50%, #FBBF24 100%);
}

.ke-stats--glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ke-stats--light {
  background: #F9FAFB;
}

.ke-stats .ke-stats__inner {
  display: grid !important;
  grid-template-columns: repeat(var(--ke-stat-cols, 4), 1fr) !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 24px;
  box-sizing: border-box;
  align-items: center;
}

.ke-stats .ke-stats__item {
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  gap: 16px;
  padding: 16px 20px;
  position: relative;
}

/* Ayırıcı çizgi - pseudo element */
.ke-stats .ke-stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}

.ke-stats--light .ke-stats__item:not(:last-child)::after {
  background: rgba(0, 0, 0, 0.08);
}

.ke-stats__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ke-stats--dark .ke-stats__icon {
  background: rgba(251, 191, 36, 0.1);
}

.ke-stats--gold .ke-stats__icon {
  background: rgba(255, 255, 255, 0.2);
}

.ke-stats--glass .ke-stats__icon {
  background: rgba(251, 191, 36, 0.1);
}

.ke-stats--light .ke-stats__icon {
  background: rgba(251, 191, 36, 0.1);
}

.ke-stats__icon i,
.ke-stats__icon svg {
  font-size: 22px;
  width: 22px;
  height: 22px;
  color: #FBBF24;
  fill: #FBBF24;
}

.ke-stats--gold .ke-stats__icon i,
.ke-stats--gold .ke-stats__icon svg {
  color: #FFFFFF;
  fill: #FFFFFF;
}

.ke-stats__data {
  text-align: left;
}

.ke-stats__number {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ke-stats--dark .ke-stats__number,
.ke-stats--glass .ke-stats__number {
  color: #FFFFFF;
}

.ke-stats--gold .ke-stats__number {
  color: #FFFFFF;
}

.ke-stats--light .ke-stats__number {
  color: #18181B;
}

.ke-stats__suffix {
  font-size: 0.6em;
  font-weight: 700;
  color: #FBBF24;
}

.ke-stats--gold .ke-stats__suffix {
  color: rgba(255, 255, 255, 0.8);
}

.ke-stats__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

.ke-stats--dark .ke-stats__label,
.ke-stats--glass .ke-stats__label {
  color: rgba(255, 255, 255, 0.5);
}

.ke-stats--gold .ke-stats__label {
  color: rgba(255, 255, 255, 0.8);
}

.ke-stats--light .ke-stats__label {
  color: #6B7280;
}

/* Responsive */
@media (max-width: 1024px) {
  .ke-stats .ke-stats__inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px 0;
  }
  .ke-stats .ke-stats__item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .ke-stats {
    padding: 32px 0;
  }
  .ke-stats .ke-stats__inner {
    grid-template-columns: 1fr !important;
    gap: 0;
    padding: 0 16px;
  }
  .ke-stats .ke-stats__item {
    padding: 14px 24px;
    justify-content: flex-start !important;
  }
  .ke-stats .ke-stats__item::after {
    display: none !important;
  }
  .ke-stats .ke-stats__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .ke-stats--light .ke-stats__item:not(:last-child) {
    border-bottom-color: rgba(0, 0, 0, 0.06);
  }
  .ke-stats__number {
    font-size: 28px;
  }
}


/* ==========================================================================
   SHARED: SECTION BADGE (reused across widgets)
   ========================================================================== */
.ke-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.15);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #D97706;
}

.ke-section-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FBBF24;
  display: inline-block;
  animation: keBadgePulse 2s ease-in-out infinite;
}


/* ==========================================================================
   KE SERVICES GRID
   ========================================================================== */
.ke-services {
  padding: 80px 24px;
  width: 100%;
}

.ke-services__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.ke-services__title {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: #18181B;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.ke-services__title span {
  color: #D97706;
}

.ke-services__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #6B7280;
  margin: 0;
}

/* Grid */
.ke-services__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.ke-services__grid--2 { grid-template-columns: repeat(2, 1fr); }
.ke-services__grid--3 { grid-template-columns: repeat(3, 1fr); }
.ke-services__grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Service Card: Overlay Style ── */
.ke-service-card--overlay {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #18181B;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease;
}

.ke-service-card--overlay:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ke-service-card--overlay .ke-service-card__image {
  position: absolute;
  inset: 0;
}

.ke-service-card--overlay .ke-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ke-service-card--overlay:hover .ke-service-card__image img {
  transform: scale(1.08);
}

.ke-service-card--overlay .ke-service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(9, 9, 11, 0.9) 0%,
    rgba(9, 9, 11, 0.4) 50%,
    rgba(9, 9, 11, 0.1) 100%
  );
  z-index: 2;
}

.ke-service-card--overlay .ke-service-card__content {
  position: relative;
  z-index: 5;
  padding: 28px;
}

.ke-service-card--overlay .ke-service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: #FBBF24;
  color: #18181B;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
}

.ke-service-card--overlay .ke-service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ke-service-card--overlay .ke-service-card__icon i,
.ke-service-card--overlay .ke-service-card__icon svg {
  color: #FBBF24;
  fill: #FBBF24;
  font-size: 18px;
  width: 18px;
  height: 18px;
}

.ke-service-card--overlay .ke-service-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.ke-service-card--overlay .ke-service-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
}

.ke-service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FBBF24;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.ke-service-card__btn:hover {
  color: #F59E0B;
  gap: 10px;
}

.ke-service-card__btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ke-service-card__btn:hover svg {
  transform: translateX(3px);
}

/* ── Service Card: Classic Style ── */
.ke-service-card--classic {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #F3F4F6;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ke-service-card--classic:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ke-service-card--classic .ke-service-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.ke-service-card--classic .ke-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ke-service-card--classic:hover .ke-service-card__image img {
  transform: scale(1.06);
}

.ke-service-card--classic .ke-service-card__overlay {
  display: none;
}

.ke-service-card--classic .ke-service-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FBBF24;
  color: #18181B;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
}

.ke-service-card--classic .ke-service-card__content {
  padding: 24px;
}

.ke-service-card--classic .ke-service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ke-service-card--classic .ke-service-card__icon i,
.ke-service-card--classic .ke-service-card__icon svg {
  color: #D97706;
  fill: #D97706;
  font-size: 18px;
  width: 18px;
  height: 18px;
}

.ke-service-card--classic .ke-service-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #18181B;
  margin: 0 0 8px;
}

.ke-service-card--classic .ke-service-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0 0 16px;
}

/* ── Service Card: Minimal Style ── */
.ke-service-card--minimal {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #F3F4F6;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.ke-service-card--minimal:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(251, 191, 36, 0.3);
}

.ke-service-card--minimal .ke-service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(251, 191, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.3s ease;
}

.ke-service-card--minimal:hover .ke-service-card__icon {
  background: #FBBF24;
}

.ke-service-card--minimal .ke-service-card__icon i,
.ke-service-card--minimal .ke-service-card__icon svg {
  color: #D97706;
  fill: #D97706;
  font-size: 24px;
  width: 24px;
  height: 24px;
  transition: color 0.3s ease, fill 0.3s ease;
}

.ke-service-card--minimal:hover .ke-service-card__icon i,
.ke-service-card--minimal:hover .ke-service-card__icon svg {
  color: #FFFFFF;
  fill: #FFFFFF;
}

.ke-service-card--minimal .ke-service-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #18181B;
  margin: 0 0 8px;
}

.ke-service-card--minimal .ke-service-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0 0 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .ke-services__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ke-services__grid--3 { grid-template-columns: repeat(2, 1fr); }
  .ke-services__title { font-size: 32px; }
}

@media (max-width: 768px) {
  .ke-services { padding: 56px 16px; }
  .ke-services__header { margin-bottom: 36px; }
  .ke-services__title { font-size: 28px; }
  .ke-services__subtitle { font-size: 15px; }
  .ke-services__grid--4,
  .ke-services__grid--3,
  .ke-services__grid--2 { grid-template-columns: 1fr; }
  .ke-service-card--overlay { min-height: 300px; }
}


/* ==========================================================================
   KE FEATURES / NEDEN BIZ
   ========================================================================== */
.ke-features {
  padding: 80px 24px;
  width: 100%;
}

.ke-features--light {
  background: #F9FAFB;
}

.ke-features--dark {
  background: #18181B;
}

.ke-features--white {
  background: #FFFFFF;
}

.ke-features__container {
  max-width: 1200px;
  margin: 0 auto;
}

.ke-features__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.ke-features__title {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.ke-features--light .ke-features__title,
.ke-features--white .ke-features__title {
  color: #18181B;
}

.ke-features--dark .ke-features__title {
  color: #FFFFFF;
}

.ke-features__title span {
  color: #D97706;
}

.ke-features--dark .ke-features__title span {
  color: #FBBF24;
}

.ke-features__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.ke-features--light .ke-features__subtitle,
.ke-features--white .ke-features__subtitle {
  color: #6B7280;
}

.ke-features--dark .ke-features__subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.ke-features--dark .ke-section-badge {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.2);
  color: #FBBF24;
}

/* Grid */
.ke-features__grid {
  display: grid;
  gap: 24px;
}

.ke-features__grid--2 { grid-template-columns: repeat(2, 1fr); }
.ke-features__grid--3 { grid-template-columns: repeat(3, 1fr); }
.ke-features__grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Feature Card */
.ke-feature {
  padding: 28px 24px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ke-features--light .ke-feature,
.ke-features--white .ke-feature {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
}

.ke-features--dark .ke-feature {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ke-feature:hover {
  transform: translateY(-4px);
}

.ke-features--light .ke-feature:hover,
.ke-features--white .ke-feature:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(251, 191, 36, 0.2);
}

.ke-features--dark .ke-feature:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border-color: rgba(251, 191, 36, 0.15);
}

.ke-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(251, 191, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s ease;
}

.ke-feature:hover .ke-feature__icon {
  background: rgba(251, 191, 36, 0.18);
}

.ke-feature__icon i,
.ke-feature__icon svg {
  color: #D97706;
  fill: #D97706;
  font-size: 22px;
  width: 22px;
  height: 22px;
}

.ke-features--dark .ke-feature__icon i,
.ke-features--dark .ke-feature__icon svg {
  color: #FBBF24;
  fill: #FBBF24;
}

.ke-feature__title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.ke-features--light .ke-feature__title,
.ke-features--white .ke-feature__title {
  color: #18181B;
}

.ke-features--dark .ke-feature__title {
  color: #FFFFFF;
}

.ke-feature__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.ke-features--light .ke-feature__desc,
.ke-features--white .ke-feature__desc {
  color: #6B7280;
}

.ke-features--dark .ke-feature__desc {
  color: rgba(255, 255, 255, 0.45);
}

/* Responsive */
@media (max-width: 1024px) {
  .ke-features__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ke-features__title { font-size: 32px; }
}

@media (max-width: 768px) {
  .ke-features { padding: 56px 16px; }
  .ke-features__header { margin-bottom: 36px; }
  .ke-features__title { font-size: 28px; }
  .ke-features__grid--4,
  .ke-features__grid--3,
  .ke-features__grid--2 { grid-template-columns: 1fr; }
}


/* ==========================================================================
   KE CTA BANNER
   ========================================================================== */
.ke-cta {
  position: relative;
  padding: 80px 24px;
  width: 100%;
  overflow: hidden;
}

.ke-cta--dark {
  background: #0F0F11;
}

.ke-cta--gold {
  background: linear-gradient(135deg, #92400E 0%, #D97706 50%, #F59E0B 100%);
}

.ke-cta--image {
  background-size: cover;
  background-position: center;
}

.ke-cta__overlay {
  position: absolute;
  inset: 0;
  background: #0F0F11;
  z-index: 1;
}

.ke-cta__inner {
  position: relative;
  z-index: 5;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ke-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.ke-cta--dark .ke-cta__badge {
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: #FBBF24;
}

.ke-cta--gold .ke-cta__badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.ke-cta--image .ke-cta__badge {
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: #FBBF24;
  backdrop-filter: blur(8px);
}

.ke-cta__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  animation: keBadgePulse 2s ease-in-out infinite;
}

.ke-cta--dark .ke-cta__badge-dot { background: #FBBF24; }
.ke-cta--gold .ke-cta__badge-dot { background: #FFFFFF; }
.ke-cta--image .ke-cta__badge-dot { background: #FBBF24; }

.ke-cta__heading {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.ke-cta__desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ke-cta--gold .ke-cta__desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.ke-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ke-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.ke-cta__btn svg {
  flex-shrink: 0;
}

.ke-cta__btn--whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.ke-cta__btn--whatsapp:hover {
  background: #1FAD54;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.ke-cta__btn--gold {
  background: #F59E0B;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.ke-cta__btn--gold:hover {
  background: #D97706;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.ke-cta__btn--white {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 13px 30px;
}

.ke-cta__btn--white:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Info Boxes */
.ke-cta__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.ke-cta--gold .ke-cta__info {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.ke-cta__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ke-cta__info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ke-cta--dark .ke-cta__info-icon,
.ke-cta--image .ke-cta__info-icon {
  background: rgba(251, 191, 36, 0.1);
}

.ke-cta--gold .ke-cta__info-icon {
  background: rgba(255, 255, 255, 0.15);
}

.ke-cta__info-icon i,
.ke-cta__info-icon svg {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

.ke-cta--dark .ke-cta__info-icon i,
.ke-cta--dark .ke-cta__info-icon svg,
.ke-cta--image .ke-cta__info-icon i,
.ke-cta--image .ke-cta__info-icon svg {
  color: #FBBF24;
  fill: #FBBF24;
}

.ke-cta--gold .ke-cta__info-icon i,
.ke-cta--gold .ke-cta__info-icon svg {
  color: #FFFFFF;
  fill: #FFFFFF;
}

.ke-cta__info-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.ke-cta--gold .ke-cta__info-label {
  color: rgba(255, 255, 255, 0.7);
}

.ke-cta__info-value {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

/* Responsive */
@media (max-width: 768px) {
  .ke-cta { padding: 56px 16px; }
  .ke-cta__heading { font-size: 30px; }
  .ke-cta__desc { font-size: 15px; }
  .ke-cta__buttons { flex-direction: column; align-items: center; gap: 10px; }
  .ke-cta__btn { width: 100%; max-width: 300px; justify-content: center; }
  .ke-cta__info { flex-direction: column; gap: 16px; margin-top: 36px; }
}


/* ==========================================================================
   KE PAGE HEADER (iç sayfa banner)
   ========================================================================== */
.ke-ph {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #18181B;
  overflow: hidden;
}

.ke-ph--small { min-height: 280px; }
.ke-ph--medium { min-height: 360px; }
.ke-ph--large { min-height: 460px; }

.ke-ph__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 11, 0.3) 0%,
    rgba(9, 9, 11, 0.6) 50%,
    rgba(9, 9, 11, 0.85) 100%
  );
  z-index: 1;
}

.ke-ph__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px 60px;
}

.ke-ph__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #FBBF24;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ke-ph__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FBBF24;
  display: inline-block;
  animation: keBadgePulse 2s ease-in-out infinite;
}

.ke-ph__title {
  font-family: 'Sora', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.ke-ph__title span {
  color: #FBBF24;
}

.ke-ph__desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 28px;
}

.ke-ph__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.ke-ph__breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ke-ph__breadcrumb a:hover {
  color: #FBBF24;
}

.ke-ph__breadcrumb svg {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.ke-ph__breadcrumb span {
  color: #FBBF24;
}

/* Responsive - Page Header */
@media (max-width: 768px) {
  .ke-ph--small { min-height: 220px; }
  .ke-ph--medium { min-height: 280px; }
  .ke-ph--large { min-height: 360px; }
  .ke-ph__content { padding: 80px 16px 40px; }
  .ke-ph__title { font-size: 30px; }
  .ke-ph__desc { font-size: 15px; }
}

@media (max-width: 480px) {
  .ke-ph__title { font-size: 26px; }
  .ke-ph__badge { font-size: 10px; padding: 6px 16px; }
}


/* ==========================================================================
   KE CONTENT BLOCK
   ========================================================================== */
.ke-cb {
  padding: 80px 24px;
  width: 100%;
}

.ke-cb--white { background: #FFFFFF; }
.ke-cb--light { background: #F9FAFB; }
.ke-cb--dark { background: #18181B; }

.ke-cb__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.ke-cb__inner--right {
  direction: rtl;
}

.ke-cb__inner--right > * {
  direction: ltr;
}

.ke-cb__media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ke-cb__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.ke-cb__media:hover img {
  transform: scale(1.04);
}

.ke-cb__text {
  padding: 8px 0;
}

/* Dark bg badge override */
.ke-cb--dark .ke-section-badge {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.2);
  color: #FBBF24;
}

.ke-cb__title {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.ke-cb--white .ke-cb__title,
.ke-cb--light .ke-cb__title {
  color: #18181B;
}

.ke-cb--dark .ke-cb__title {
  color: #FFFFFF;
}

.ke-cb__title span {
  color: #D97706;
}

.ke-cb--dark .ke-cb__title span {
  color: #FBBF24;
}

.ke-cb__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 24px;
}

.ke-cb--white .ke-cb__desc,
.ke-cb--light .ke-cb__desc {
  color: #6B7280;
}

.ke-cb--dark .ke-cb__desc {
  color: rgba(255, 255, 255, 0.6);
}

.ke-cb__desc p {
  margin: 0 0 12px;
}

.ke-cb__desc p:last-child {
  margin-bottom: 0;
}

/* List */
.ke-cb__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ke-cb__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.ke-cb--white .ke-cb__list li span,
.ke-cb--light .ke-cb__list li span {
  color: #374151;
}

.ke-cb--dark .ke-cb__list li span {
  color: rgba(255, 255, 255, 0.8);
}

.ke-cb__list li i,
.ke-cb__list li svg {
  color: #D97706;
  fill: #D97706;
  font-size: 16px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ke-cb--dark .ke-cb__list li i,
.ke-cb--dark .ke-cb__list li svg {
  color: #FBBF24;
  fill: #FBBF24;
}

/* Buttons */
.ke-cb__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ke-cb__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.ke-cb__btn--gold {
  background: #F59E0B;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.ke-cb__btn--gold:hover {
  background: #D97706;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.ke-cb__btn--whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.ke-cb__btn--whatsapp:hover {
  background: #1FAD54;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.ke-cb__btn--dark {
  background: #18181B;
  color: #FFFFFF;
}

.ke-cb__btn--dark:hover {
  background: #27272A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.ke-cb__btn--outline {
  background: transparent;
  border: 2px solid #D1D5DB;
  color: #374151;
  padding: 12px 26px;
}

.ke-cb--dark .ke-cb__btn--outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.ke-cb__btn--outline:hover {
  border-color: #F59E0B;
  color: #F59E0B;
  transform: translateY(-2px);
}

/* Responsive - Content Block */
@media (max-width: 1024px) {
  .ke-cb__inner { gap: 36px; }
  .ke-cb__title { font-size: 30px; }
}

@media (max-width: 768px) {
  .ke-cb { padding: 56px 16px; }
  .ke-cb__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ke-cb__inner--right {
    direction: ltr;
  }
  .ke-cb__title { font-size: 26px; }
  .ke-cb__media { border-radius: 16px; }
  .ke-cb__buttons { flex-direction: column; align-items: stretch; }
  .ke-cb__btn { justify-content: center; }
}


/* ==========================================================================
   KE GALLERY GRID
   ========================================================================== */
.ke-gallery {
  padding: 80px 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Filters */
.ke-gallery__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.ke-gallery__filter {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid #E5E7EB;
  background: transparent;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ke-gallery__filter:hover {
  border-color: #F59E0B;
  color: #D97706;
}

.ke-gallery__filter.active {
  background: #F59E0B;
  color: #FFFFFF;
  border-color: #F59E0B;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

/* Grid */
.ke-gallery__grid {
  display: grid;
  gap: 16px;
}

.ke-gallery__grid--2 { grid-template-columns: repeat(2, 1fr); }
.ke-gallery__grid--3 { grid-template-columns: repeat(3, 1fr); }
.ke-gallery__grid--4 { grid-template-columns: repeat(4, 1fr); }

.ke-gallery__item {
  border-radius: 16px;
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ke-gallery__link {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ke-gallery__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ke-gallery__item:hover img {
  transform: scale(1.08);
}

.ke-gallery__hover {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ke-gallery__item:hover .ke-gallery__hover {
  opacity: 1;
}

.ke-gallery__hover svg {
  color: #FFFFFF;
  width: 28px;
  height: 28px;
}

.ke-gallery__hover span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 0 16px;
}

/* Responsive - Gallery */
@media (max-width: 1024px) {
  .ke-gallery__grid--4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .ke-gallery { padding: 56px 16px; }
  .ke-gallery__grid--4,
  .ke-gallery__grid--3 { grid-template-columns: repeat(2, 1fr); }
  .ke-gallery__filters { gap: 6px; }
  .ke-gallery__filter { font-size: 12px; padding: 7px 16px; }
}

@media (max-width: 480px) {
  .ke-gallery__grid--4,
  .ke-gallery__grid--3,
  .ke-gallery__grid--2 { grid-template-columns: 1fr; }
}


/* ==========================================================================
   KE FAQ ACCORDION
   ========================================================================== */
.ke-faq {
  padding: 80px 24px;
  width: 100%;
}

.ke-faq--white { background: #FFFFFF; }
.ke-faq--light { background: #F9FAFB; }
.ke-faq--dark { background: #18181B; }

.ke-faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.ke-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.ke-faq--dark .ke-section-badge {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.2);
  color: #FBBF24;
}

.ke-faq__title {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

.ke-faq--white .ke-faq__title,
.ke-faq--light .ke-faq__title {
  color: #18181B;
}

.ke-faq--dark .ke-faq__title {
  color: #FFFFFF;
}

.ke-faq__title span {
  color: #D97706;
}

.ke-faq--dark .ke-faq__title span {
  color: #FBBF24;
}

.ke-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ke-faq__item {
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.ke-faq--white .ke-faq__item,
.ke-faq--light .ke-faq__item {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
}

.ke-faq--light .ke-faq__item {
  border-color: #E5E7EB;
}

.ke-faq--dark .ke-faq__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ke-faq__item.open {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ke-faq--dark .ke-faq__item.open {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(251, 191, 36, 0.12);
}

.ke-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.ke-faq--white .ke-faq__question,
.ke-faq--light .ke-faq__question {
  color: #18181B;
}

.ke-faq--dark .ke-faq__question {
  color: #FFFFFF;
}

.ke-faq__item.open .ke-faq__question {
  color: #D97706;
}

.ke-faq--dark .ke-faq__item.open .ke-faq__question {
  color: #FBBF24;
}

.ke-faq__icon {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: #9CA3AF;
}

.ke-faq__item.open .ke-faq__icon {
  transform: rotate(45deg);
  color: #D97706;
}

.ke-faq--dark .ke-faq__item.open .ke-faq__icon {
  color: #FBBF24;
}

.ke-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ke-faq__answer-inner {
  padding: 0 24px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

.ke-faq--white .ke-faq__answer-inner,
.ke-faq--light .ke-faq__answer-inner {
  color: #6B7280;
}

.ke-faq--dark .ke-faq__answer-inner {
  color: rgba(255, 255, 255, 0.55);
}

.ke-faq__answer-inner p {
  margin: 0 0 8px;
}

.ke-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

/* Responsive - FAQ */
@media (max-width: 768px) {
  .ke-faq { padding: 56px 16px; }
  .ke-faq__title { font-size: 28px; }
  .ke-faq__header { margin-bottom: 32px; }
  .ke-faq__question { padding: 16px 18px; font-size: 14px; }
  .ke-faq__answer-inner { padding: 0 18px 16px; font-size: 13px; }
}


/* ==========================================================================
   KE CONTACT INFO
   ========================================================================== */
.ke-contact {
  padding: 80px 24px;
  width: 100%;
  background: #FFFFFF;
}

.ke-contact__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Side layout */
.ke-contact--side .ke-contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Stacked layout */
.ke-contact--stacked .ke-contact__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ke-contact--stacked .ke-contact__info {
  text-align: center;
}

.ke-contact--stacked .ke-contact__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

/* Cards layout */
.ke-contact--cards .ke-contact__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ke-contact--cards .ke-contact__info {
  text-align: center;
}

.ke-contact--cards .ke-contact__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.ke-contact--cards .ke-contact__item {
  background: #F9FAFB;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.ke-contact--cards .ke-contact__icon {
  margin-bottom: 12px;
}

.ke-contact__title {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: #18181B;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.ke-contact__title span {
  color: #D97706;
}

.ke-contact__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ke-contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #F9FAFB;
  border: 1px solid #F3F4F6;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.ke-contact__item--link:hover {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.ke-contact__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(251, 191, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ke-contact__icon svg {
  color: #D97706;
  width: 20px;
  height: 20px;
}

.ke-contact__icon--wa {
  background: rgba(37, 211, 102, 0.1);
}

.ke-contact__icon--wa svg {
  color: #25D366;
  fill: #25D366;
}

.ke-contact__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
  margin-bottom: 3px;
}

.ke-contact__value {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #18181B;
}

/* Map */
.ke-contact__map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  background: #F3F4F6;
}

.ke-contact__map iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

/* Responsive - Contact */
@media (max-width: 1024px) {
  .ke-contact__title { font-size: 30px; }
}

@media (max-width: 768px) {
  .ke-contact { padding: 56px 16px; }
  .ke-contact--side .ke-contact__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ke-contact__title { font-size: 26px; }
  .ke-contact__map { min-height: 280px; }
  .ke-contact__map iframe { min-height: 280px; }
  .ke-contact--stacked .ke-contact__items,
  .ke-contact--cards .ke-contact__items {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   KE TESTIMONIALS
   ========================================================================== */
.ke-testimonials {
  padding: 80px 24px;
  width: 100%;
}

.ke-testimonials--white { background: #FFFFFF; }
.ke-testimonials--light { background: #F9FAFB; }
.ke-testimonials--dark { background: #18181B; }

.ke-testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
}

.ke-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.ke-testimonials--dark .ke-section-badge {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.2);
  color: #FBBF24;
}

.ke-testimonials__title {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

.ke-testimonials--white .ke-testimonials__title,
.ke-testimonials--light .ke-testimonials__title {
  color: #18181B;
}

.ke-testimonials--dark .ke-testimonials__title {
  color: #FFFFFF;
}

.ke-testimonials__title span {
  color: #D97706;
}

.ke-testimonials--dark .ke-testimonials__title span {
  color: #FBBF24;
}

.ke-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.ke-testimonial-card {
  padding: 32px 28px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ke-testimonials--white .ke-testimonial-card,
.ke-testimonials--light .ke-testimonial-card {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
}

.ke-testimonials--light .ke-testimonial-card {
  border-color: #E5E7EB;
}

.ke-testimonials--dark .ke-testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ke-testimonial-card:hover {
  transform: translateY(-4px);
}

.ke-testimonials--white .ke-testimonial-card:hover,
.ke-testimonials--light .ke-testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(251, 191, 36, 0.2);
}

.ke-testimonials--dark .ke-testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border-color: rgba(251, 191, 36, 0.15);
}

.ke-testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 18px;
}

.ke-testimonial-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 24px;
  font-style: italic;
}

.ke-testimonials--white .ke-testimonial-card__text,
.ke-testimonials--light .ke-testimonial-card__text {
  color: #6B7280;
}

.ke-testimonials--dark .ke-testimonial-card__text {
  color: rgba(255, 255, 255, 0.6);
}

.ke-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #F3F4F6;
}

.ke-testimonials--dark .ke-testimonial-card__author {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.ke-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ke-testimonial-card__avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.12);
  color: #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.ke-testimonials--dark .ke-testimonial-card__avatar-placeholder {
  background: rgba(251, 191, 36, 0.15);
  color: #FBBF24;
}

.ke-testimonial-card__name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.ke-testimonials--white .ke-testimonial-card__name,
.ke-testimonials--light .ke-testimonial-card__name {
  color: #18181B;
}

.ke-testimonials--dark .ke-testimonial-card__name {
  color: #FFFFFF;
}

.ke-testimonial-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  margin-top: 2px;
}

/* Responsive - Testimonials */
@media (max-width: 1024px) {
  .ke-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .ke-testimonials__title { font-size: 30px; }
}

@media (max-width: 768px) {
  .ke-testimonials { padding: 56px 16px; }
  .ke-testimonials__header { margin-bottom: 32px; }
  .ke-testimonials__title { font-size: 26px; }
  .ke-testimonials__grid { grid-template-columns: 1fr; }
  .ke-testimonial-card { padding: 24px 20px; }
}


/* ==========================================================================
   KE ICON BOX GRID
   ========================================================================== */
.ke-ibox-section {
  padding: 80px 24px;
  width: 100%;
}

.ke-ibox-section--white { background: #FFFFFF; }
.ke-ibox-section--light { background: #F9FAFB; }
.ke-ibox-section--dark { background: #18181B; }

.ke-ibox-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.ke-ibox-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.ke-ibox-section--dark .ke-section-badge {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.2);
  color: #FBBF24;
}

.ke-ibox-section__title {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.ke-ibox-section--white .ke-ibox-section__title,
.ke-ibox-section--light .ke-ibox-section__title {
  color: #18181B;
}

.ke-ibox-section--dark .ke-ibox-section__title {
  color: #FFFFFF;
}

.ke-ibox-section__title span {
  color: #D97706;
}

.ke-ibox-section--dark .ke-ibox-section__title span {
  color: #FBBF24;
}

.ke-ibox-section__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.ke-ibox-section--white .ke-ibox-section__subtitle,
.ke-ibox-section--light .ke-ibox-section__subtitle {
  color: #6B7280;
}

.ke-ibox-section--dark .ke-ibox-section__subtitle {
  color: rgba(255, 255, 255, 0.5);
}

/* Grid */
.ke-ibox-grid {
  display: grid;
  gap: 24px;
}

.ke-ibox-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ke-ibox-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ke-ibox-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Box */
.ke-ibox {
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ke-ibox:hover {
  transform: translateY(-4px);
}

/* Bordered style */
.ke-ibox--bordered {
  border: 1px solid #F3F4F6;
}

.ke-ibox-section--white .ke-ibox--bordered,
.ke-ibox-section--light .ke-ibox--bordered {
  background: #FFFFFF;
}

.ke-ibox-section--light .ke-ibox--bordered {
  border-color: #E5E7EB;
}

.ke-ibox-section--dark .ke-ibox--bordered {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.ke-ibox--bordered:hover {
  border-color: rgba(251, 191, 36, 0.3);
}

.ke-ibox-section--white .ke-ibox--bordered:hover,
.ke-ibox-section--light .ke-ibox--bordered:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.ke-ibox-section--dark .ke-ibox--bordered:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Filled style */
.ke-ibox--filled {
  border: none;
}

.ke-ibox-section--white .ke-ibox--filled,
.ke-ibox-section--light .ke-ibox--filled {
  background: #F9FAFB;
}

.ke-ibox-section--dark .ke-ibox--filled {
  background: rgba(255, 255, 255, 0.06);
}

.ke-ibox-section--white .ke-ibox--filled:hover,
.ke-ibox-section--light .ke-ibox--filled:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  background: #FFFFFF;
}

.ke-ibox-section--dark .ke-ibox--filled:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

/* Minimal style */
.ke-ibox--minimal {
  background: transparent;
  border: none;
  padding: 24px 16px;
}

.ke-ibox--minimal:hover {
  transform: translateY(-2px);
}

/* Number label */
.ke-ibox__num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.ke-ibox-section--white .ke-ibox__num,
.ke-ibox-section--light .ke-ibox__num {
  color: rgba(0, 0, 0, 0.04);
}

.ke-ibox-section--dark .ke-ibox__num {
  color: rgba(255, 255, 255, 0.04);
}

/* Icon */
.ke-ibox__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(251, 191, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.3s ease;
}

.ke-ibox:hover .ke-ibox__icon {
  background: rgba(251, 191, 36, 0.18);
}

.ke-ibox__icon i {
  font-size: 22px;
}

.ke-ibox__icon svg {
  width: 22px;
  height: 22px;
}

.ke-ibox-section--dark .ke-ibox__icon {
  background: rgba(251, 191, 36, 0.12);
}

.ke-ibox-section--dark .ke-ibox:hover .ke-ibox__icon {
  background: rgba(251, 191, 36, 0.2);
}

/* Title */
.ke-ibox__title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}

.ke-ibox-section--white .ke-ibox__title,
.ke-ibox-section--light .ke-ibox__title {
  color: #18181B;
}

.ke-ibox-section--dark .ke-ibox__title {
  color: #FFFFFF;
}

/* Description */
.ke-ibox__desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.ke-ibox-section--white .ke-ibox__desc,
.ke-ibox-section--light .ke-ibox__desc {
  color: #6B7280;
}

.ke-ibox-section--dark .ke-ibox__desc {
  color: rgba(255, 255, 255, 0.45);
}

/* Responsive - Icon Box Grid */
@media (max-width: 1024px) {
  .ke-ibox-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ke-ibox-section__title { font-size: 30px; }
}

@media (max-width: 768px) {
  .ke-ibox-section { padding: 56px 16px; }
  .ke-ibox-section__header { margin-bottom: 32px; }
  .ke-ibox-section__title { font-size: 26px; }
  .ke-ibox-grid--4,
  .ke-ibox-grid--3,
  .ke-ibox-grid--2 { grid-template-columns: 1fr; }
  .ke-ibox { padding: 24px 20px; }
}
