
:root {
  --kfj-background: #121212;
  --kfj-surface: #1E1E1E;
  --kfj-surface-hover: #2A2A2A;
  --kfj-accent-primary: #6E56CF;
  --kfj-accent-secondary: #00B2FF;
  --kfj-accent-tertiary: #FF5757;
  --kfj-text-primary: #F5F5F5;
  --kfj-text-secondary: #A0A0A0;
  --kfj-border: #2A2A2A;
  --kfj-shadow: rgba(0, 0, 0, 0.3);
  --kfj-overlay: rgba(0, 0, 0, 0.7);
  
  --kfj-spacing-xs: 0.5rem;
  --kfj-spacing-sm: 1rem;
  --kfj-spacing-md: 2rem;
  --kfj-spacing-lg: 3rem;
  --kfj-spacing-xl: 5rem;
  
  --kfj-radius-sm: 0.25rem;
  --kfj-radius-md: 0.5rem;
  --kfj-radius-lg: 1rem;
  
  --kfj-transition-fast: 0.2s ease;
  --kfj-transition-normal: 0.3s ease;
  --kfj-transition-slow: 0.5s ease;
  
  --kfj-font-heading: 'Epilogue', sans-serif;
  --kfj-font-body: 'Epilogue', sans-serif;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--kfj-font-body);
  background-color: var(--kfj-background);
  color: var(--kfj-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--kfj-font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--kfj-spacing-sm);
  color: var(--kfj-text-primary);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--kfj-spacing-sm);
}

a {
  color: var(--kfj-accent-secondary);
  text-decoration: none;
  transition: color var(--kfj-transition-fast);
}

a:hover, a:focus {
  color: var(--kfj-accent-primary);
  text-decoration: underline;
}


.kfj-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.kfj-main {
  flex: 1;
}

.kfj-section {
  padding: var(--kfj-spacing-lg) var(--kfj-spacing-sm);
}

.kfj-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--kfj-spacing-sm);
}


.kfj-header {
  background-color: var(--kfj-surface);
  border-bottom: 1px solid var(--kfj-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.kfj-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--kfj-spacing-sm) 0;
}

.kfj-logo {
  height: 40px;
  width: auto;
}

.kfj-nav {
  display: flex;
}

.kfj-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--kfj-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.kfj-nav-list {
  display: flex;
  list-style: none;
  gap: var(--kfj-spacing-md);
}

.kfj-nav-item {
  position: relative;
}

.kfj-nav-link {
  color: var(--kfj-text-primary);
  font-weight: 500;
  padding: var(--kfj-spacing-xs) 0;
  position: relative;
}

.kfj-nav-link:hover, .kfj-nav-link:focus {
  color: var(--kfj-accent-primary);
  text-decoration: none;
}

.kfj-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--kfj-accent-primary);
  transition: width var(--kfj-transition-normal);
}

.kfj-nav-link:hover::after, 
.kfj-nav-link:focus::after,
.kfj-nav-link.kfj-active::after {
  width: 100%;
}


.kfj-footer {
  background-color: var(--kfj-surface);
  border-top: 1px solid var(--kfj-border);
  padding: var(--kfj-spacing-md) 0;
}

.kfj-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--kfj-spacing-md);
}

.kfj-footer-column h4 {
  color: var(--kfj-text-primary);
  margin-bottom: var(--kfj-spacing-sm);
  position: relative;
}

.kfj-footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--kfj-accent-primary);
}

.kfj-footer-links {
  list-style: none;
}

.kfj-footer-link {
  margin-bottom: var(--kfj-spacing-xs);
}

.kfj-footer-bottom {
  margin-top: var(--kfj-spacing-md);
  padding-top: var(--kfj-spacing-sm);
  border-top: 1px solid var(--kfj-border);
  text-align: center;
  color: var(--kfj-text-secondary);
  font-size: 0.875rem;
}


.kfj-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kfj-accent-primary);
  color: var(--kfj-text-primary);
  border: none;
  border-radius: var(--kfj-radius-md);
  padding: 0.75rem 1.5rem;
  font-family: var(--kfj-font-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color var(--kfj-transition-fast), transform var(--kfj-transition-fast);
  text-decoration: none;
}

.kfj-button:hover, .kfj-button:focus {
  background-color: var(--kfj-accent-secondary);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--kfj-text-primary);
}

.kfj-button--secondary {
  background-color: transparent;
  border: 2px solid var(--kfj-accent-primary);
  color: var(--kfj-accent-primary);
}

.kfj-button--secondary:hover, .kfj-button--secondary:focus {
  background-color: var(--kfj-accent-primary);
  color: var(--kfj-text-primary);
}

.kfj-button--tertiary {
  background-color: transparent;
  color: var(--kfj-text-primary);
  padding: 0.5rem 0;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}

.kfj-button--tertiary:hover, .kfj-button--tertiary:focus {
  background-color: transparent;
  border-bottom-color: var(--kfj-accent-primary);
  transform: none;
}


.kfj-card {
  background-color: var(--kfj-surface);
  border-radius: var(--kfj-radius-lg);
  overflow: hidden;
  transition: transform var(--kfj-transition-normal), box-shadow var(--kfj-transition-normal);
  height: 100%;
}

.kfj-card:hover, .kfj-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--kfj-shadow);
}

.kfj-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.kfj-card-content {
  padding: var(--kfj-spacing-md);
}

.kfj-card-title {
  margin-bottom: var(--kfj-spacing-xs);
  font-size: 1.25rem;
}

.kfj-card-meta {
  display: flex;
  color: var(--kfj-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--kfj-spacing-xs);
}

.kfj-card-meta span:not(:last-child)::after {
  content: '•';
  margin: 0 0.5rem;
}

.kfj-card-description {
  color: var(--kfj-text-secondary);
  margin-bottom: var(--kfj-spacing-sm);
}


.kfj-form-group {
  margin-bottom: var(--kfj-spacing-sm);
}

.kfj-form-label {
  display: block;
  margin-bottom: var(--kfj-spacing-xs);
  font-weight: 500;
}

.kfj-form-input,
.kfj-form-textarea,
.kfj-form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--kfj-border);
  border-radius: var(--kfj-radius-md);
  background-color: var(--kfj-surface-hover);
  color: var(--kfj-text-primary);
  font-family: var(--kfj-font-body);
  font-size: 1rem;
  transition: border-color var(--kfj-transition-fast), box-shadow var(--kfj-transition-fast);
}

.kfj-form-input:focus,
.kfj-form-textarea:focus,
.kfj-form-select:focus {
  outline: none;
  border-color: var(--kfj-accent-primary);
  box-shadow: 0 0 0 3px rgba(110, 86, 207, 0.2);
}

.kfj-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.kfj-form-checkbox {
  display: flex;
  align-items: flex-start;
}

.kfj-form-checkbox input {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}


.kfj-hero {
  position: relative;
  padding: var(--kfj-spacing-xl) 0;
  overflow: hidden;
}

.kfj-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--kfj-background);
}

.kfj-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(110, 86, 207, 0.2) 0%, rgba(0, 178, 255, 0.2) 100%);
  z-index: -1;
}

.kfj-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}

.kfj-hero-title {
  font-size: 3rem;
  margin-bottom: var(--kfj-spacing-sm);
  background: linear-gradient(135deg, var(--kfj-accent-primary) 0%, var(--kfj-accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.kfj-hero-subtitle {
  font-size: 1.25rem;
  color: var(--kfj-text-secondary);
  margin-bottom: var(--kfj-spacing-md);
}

.kfj-hero-buttons {
  display: flex;
  gap: var(--kfj-spacing-sm);
}


.kfj-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--kfj-spacing-lg);
  align-items: center;
}

.kfj-about-image {
  border-radius: var(--kfj-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px var(--kfj-shadow);
}

.kfj-about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--kfj-transition-slow);
}

.kfj-about-image:hover img {
  transform: scale(1.05);
}

.kfj-about-content {
  padding: var(--kfj-spacing-md);
}

.kfj-about-title {
  position: relative;
  padding-bottom: var(--kfj-spacing-xs);
  margin-bottom: var(--kfj-spacing-md);
}

.kfj-about-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--kfj-accent-primary), var(--kfj-accent-secondary));
}


.kfj-timeline {
  position: relative;
  padding: var(--kfj-spacing-lg) 0;
}

.kfj-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--kfj-border);
  transform: translateX(-50%);
}

.kfj-timeline-item {
  position: relative;
  margin-bottom: var(--kfj-spacing-lg);
  width: 50%;
}

.kfj-timeline-item:nth-child(odd) {
  left: 0;
  padding-right: var(--kfj-spacing-lg);
}

.kfj-timeline-item:nth-child(even) {
  left: 50%;
  padding-left: var(--kfj-spacing-lg);
}

.kfj-timeline-dot {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--kfj-accent-primary);
  border-radius: 50%;
  z-index: 1;
}

.kfj-timeline-item:nth-child(odd) .kfj-timeline-dot {
  right: -10px;
}

.kfj-timeline-item:nth-child(even) .kfj-timeline-dot {
  left: -10px;
}

.kfj-timeline-content {
  padding: var(--kfj-spacing-md);
  background-color: var(--kfj-surface);
  border-radius: var(--kfj-radius-lg);
  box-shadow: 0 5px 15px var(--kfj-shadow);
}

.kfj-timeline-date {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--kfj-accent-primary);
  color: var(--kfj-text-primary);
  border-radius: var(--kfj-radius-sm);
  font-size: 0.875rem;
  margin-bottom: var(--kfj-spacing-xs);
}


.kfj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--kfj-spacing-md);
}


.kfj-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--kfj-spacing-lg);
}

.kfj-contact-info {
  padding: var(--kfj-spacing-md);
  background-color: var(--kfj-surface);
  border-radius: var(--kfj-radius-lg);
}

.kfj-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--kfj-spacing-sm);
}

.kfj-contact-icon {
  color: var(--kfj-accent-primary);
  font-size: 1.5rem;
  margin-right: var(--kfj-spacing-sm);
}

.kfj-contact-map {
  border-radius: var(--kfj-radius-lg);
  overflow: hidden;
  height: 400px;
}


.kfj-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--kfj-surface);
  padding: var(--kfj-spacing-md);
  box-shadow: 0 -5px 20px var(--kfj-shadow);
  z-index: 1000;
  display: none;
}

.kfj-cookie-content {
  display: flex;
  flex-direction: column;
  gap: var(--kfj-spacing-sm);
}

.kfj-cookie-title {
  font-size: 1.25rem;
  margin-bottom: var(--kfj-spacing-xs);
}

.kfj-cookie-actions {
  display: flex;
  gap: var(--kfj-spacing-sm);
  margin-top: var(--kfj-spacing-sm);
}

.kfj-cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--kfj-surface);
  padding: var(--kfj-spacing-lg);
  border-radius: var(--kfj-radius-lg);
  box-shadow: 0 10px 30px var(--kfj-shadow);
  z-index: 1010;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  display: none;
}

.kfj-cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--kfj-spacing-md);
}

.kfj-cookie-settings-title {
  font-size: 1.5rem;
}

.kfj-cookie-settings-close {
  background: none;
  border: none;
  color: var(--kfj-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.kfj-cookie-category {
  margin-bottom: var(--kfj-spacing-md);
}

.kfj-cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--kfj-spacing-xs);
}

.kfj-cookie-category-title {
  font-size: 1.25rem;
}

.kfj-cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--kfj-overlay);
  z-index: 1005;
  display: none;
}


.kfj-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.kfj-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.kfj-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--kfj-border);
  transition: var(--kfj-transition-fast);
  border-radius: 34px;
}

.kfj-switch-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--kfj-text-primary);
  transition: var(--kfj-transition-fast);
  border-radius: 50%;
}

.kfj-switch input:checked + .kfj-switch-slider {
  background-color: var(--kfj-accent-primary);
}

.kfj-switch input:checked + .kfj-switch-slider:before {
  transform: translateX(26px);
}


.kfj-parallax {
  position: relative;
  overflow: hidden;
}

.kfj-parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}


.kfj-text-gradient {
  background: linear-gradient(135deg, var(--kfj-accent-primary) 0%, var(--kfj-accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.kfj-text-center {
  text-align: center;
}

.kfj-mb-xs {
  margin-bottom: var(--kfj-spacing-xs);
}

.kfj-mb-sm {
  margin-bottom: var(--kfj-spacing-sm);
}

.kfj-mb-md {
  margin-bottom: var(--kfj-spacing-md);
}

.kfj-mb-lg {
  margin-bottom: var(--kfj-spacing-lg);
}

.kfj-mb-xl {
  margin-bottom: var(--kfj-spacing-xl);
}


@media (max-width: 991px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .kfj-hero-title {
    font-size: 2.5rem;
  }
  
  .kfj-about {
    grid-template-columns: 1fr;
  }
  
  .kfj-contact {
    grid-template-columns: 1fr;
  }
  
  .kfj-timeline::before {
    left: 40px;
  }
  
  .kfj-timeline-item {
    width: 100%;
    padding-left: 80px !important;
    padding-right: 0 !important;
    left: 0 !important;
  }
  
  .kfj-timeline-dot {
    left: 30px !important;
    right: auto !important;
  }
}

@media (max-width: 767px) {
  .kfj-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--kfj-spacing-sm);
  }
  
  .kfj-nav {
    width: 100%;
  }
  
  .kfj-nav-toggle {
    display: block;
    position: absolute;
    top: var(--kfj-spacing-sm);
    right: var(--kfj-spacing-sm);
  }
  
  .kfj-nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .kfj-nav-list.kfj-active {
    display: flex;
  }
  
  .kfj-nav-item {
    width: 100%;
  }
  
  .kfj-nav-link {
    display: block;
    padding: var(--kfj-spacing-sm);
    border-bottom: 1px solid var(--kfj-border);
  }
  
  .kfj-hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .kfj-button {
    width: 100%;
  }
  
  .kfj-cookie-actions {
    flex-direction: column;
  }
  
  .kfj-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  html {
    font-size: 14px;
  }
  
  .kfj-hero-title {
    font-size: 2rem;
  }
  
  .kfj-section {
    padding: var(--kfj-spacing-md) var(--kfj-spacing-xs);
  }
}


.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 5;
}

.iti__country-list {
  background-color: var(--kfj-surface);
  color: var(--kfj-text-primary);
  border-color: var(--kfj-border);
}

.iti__country.iti__highlight {
  background-color: var(--kfj-surface-hover);
}


.tippy-box {
  background-color: var(--kfj-surface);
  color: var(--kfj-text-primary);
  border: 1px solid var(--kfj-border);
  border-radius: var(--kfj-radius-md);
}

.tippy-arrow {
  color: var(--kfj-surface);
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--kfj-background);
}

::-webkit-scrollbar-thumb {
  background: var(--kfj-border);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--kfj-accent-primary);
}