@import url("fonts.css");
@import url("base/base.css");
@import url("themes/variables.css");
@import url("themes/dark.css");
@import url("components/button.css");
@import url("components/searchbar.css");
@import url("components/checkbox.css");
@import url("components/scroll-to-top.css");
@import url("components/dropdown.css");
@import url("components/modal.css");

html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}
/* ==============================
   GENEL HEADER / NAVBAR İSKELETİ
   ============================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--background);
  box-shadow: var(--shadow-hd);
  transition: all 0.3s ease;
  border-radius: 0px 0px 30px 30px;
}

/* Scroll sonrası fixed animasyon istersen JS ile .fixed ekleniyor */
.header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  animation: slideDown 0.3s ease forwards;
  opacity: 0.96;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-container {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  padding: 0 16px;
}

ul {
  list-style-type: none;
}

/* Ana navbar satırı */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
  gap: 16px;
}

/* Sol taraf logo */
ul.navbar-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand {
  display: inline-block;
}

.logo-img {
  height: 29px;
  width: auto;
}

/* Orta menü */
.navbar-menu {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Menü listesi */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-item {
  position: relative;
  flex: 0 0 auto;
}

/* Ana link / butonlar */
.nav-link,
.nav-link-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease;
}

.nav-link--primary {
  background: transparent;
}

.nav-link--primary:hover,
.nav-link-btn:hover {
  background: #1e3a8a;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.45);
  transform: translateY(-1px);
}

.nav-link--primary:hover .nav-label,
.nav-link-btn:hover .nav-label {
  color: #ffffff;
}

/* İkon kapsayıcıları */
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  flex-shrink: 0;
}

.nav-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.dropdown-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}

.dropdown-chevron svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transform: rotate(0deg);
  /* Kapalıyken yön */
  transition:
    transform 0.22s ease,
    /* Dönme animasyonu */ stroke 0.18s ease;
  /* Renk geçişi */
}
.nav-link-btn:hover .dropdown-chevron svg,
.nav-link--primary:hover .dropdown-chevron svg {
  stroke: #ffffff;
}

/* MENÜ AÇIKKEN (li.is-open) OKU AŞAĞI DÖNDÜR */
.nav-item--has-children.is-open .dropdown-chevron svg,
.nav-link-btn[aria-expanded="true"] .dropdown-chevron svg {
  transform: rotate(180deg); /* Açıkken aşağı bakar */
}

/* İstersen kapalıyı explicit tanımla */
.nav-link-btn[aria-expanded="false"] .dropdown-chevron svg {
  transform: rotate(0deg);
}

/* ==============================
   DROPDOWN MENÜ (SADECE CLICK İLE)
   ============================== */

.dropdown {
  position: relative;
}

/* Varsayılan: kapalı */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 17px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.75);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0s linear 0.16s;
  z-index: 40;
}

/* JS: li.nav-item--has-children.is-open olduğunda aç */
.nav-item--has-children.is-open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0s;
  overflow: hidden;
}

/* Alt itemler */
.dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  color: #0f172a;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.12s ease,
    padding-left 0.12s ease,
    color 0.12s ease;
}

.dropdown-item:hover {
  background-color: #1e3a8a !important;
  padding-left: 18px;
}

/* ==============================
   SAĞ TARAF AKSİYONLAR (DİL / AUTH / PROFİL)
   ============================== */

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

/* Dil seçici (şu an HTML’de display:none, yine de stil kalsın) */
.language-selector {
  position: relative;
}

.language-btn {
  background: transparent;
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.language-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.language-dropdown {
  position: absolute;
  top: 186%;
  right: 0;
  background-color: var(--background);
  min-width: 200px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 10;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: block;
  transition: var(--transition);
  padding: 12px 16px;
}

.language-option:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.language-option.active {
  background-color: rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

.sl-flag {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center center;
  vertical-align: middle;
}

/* Auth butonları */
.auth-buttons {
  display: flex;
  gap: 10px;
}

.auth-buttons a,
.auth-buttons button {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Giriş / Kayıt */
.btn-login {
  background: transparent;
  color: #1e3a8a;
  border: 2px solid #1e3a8a;
}

.btn-login:hover {
  background: #1e3a8a;
  color: #fff;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.btn-register {
  background: #1e3a8a;
  color: #fff;
  border: 2px solid #1e3a8a;
}

.btn-register:hover {
  background: #264aad;
  border-color: #264aad;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* ==============================
   PROFİL DROPDOWN
   ============================== */

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-link-wrapper {
  position: relative;
  display: inline-block;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  color: #e5edff;
  cursor: pointer;
  white-space: nowrap;
}

.profile-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
  color: #94a3b8;
}

/* Profil dropdown kutusu */
.profile-dropdown {
  position: absolute;
  top: 162%;
  right: -4px;
  min-width: 240px;
  background-color: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.55);
  border-radius: 0px 0px 8px 8px;
  overflow: hidden;
  display: none;
  z-index: 999;
}

/* JS ile .show sınıfı ekleniyor */
.profile-dropdown.show {
  display: block !important;
}

/* Üst bilgi */
.user-profile-header {
  padding: 10px 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.user-profile-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-profile-name {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
}

.user-profile-email {
  font-size: 12px;
  color: #6b7280;
}

/* Profil dropdown linkleri */
.profile-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 13px;
  color: #111827;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    padding-left 0.15s ease,
    color 0.15s ease;
}

.profile-dropdown a svg.icon {
  min-width: 16px;
  stroke: #6b7280;
}

.profile-dropdown a:hover {
  background-color: #f3f4f6;
  padding-left: 18px;
}

/* Çıkış linki */
.profile-dropdown a[href*="Logout"],
.profile-dropdown a[style*="red"] {
  border-top: 1px solid #e5e7eb;
  margin-top: 4px;
  color: #dc2626 !important;
}

.profile-dropdown a[href*="Logout"]:hover,
.profile-dropdown a[style*="red"]:hover {
  background: #fee2e2;
}

/* ==============================
   AUTH DROPDOWN (Aday / İşveren kartları)
   ============================== */

.auth-menu-wrapper {
  position: relative;
}

.auth-dropdown {
  position: absolute;
  right: 0;
  top: 155%;
  max-width: 92vw;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 22px 44px rgba(2, 6, 23, 0.18);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0.18s;
}

/* JS: .show geldiğinde aç */
.auth-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s;
}

/* Masaüstü için hover ile de açılabilsin istersen; istemezsen bu bloğu silebilirsin */
@media (hover: hover) and (pointer: fine) {
  .auth-menu-wrapper:hover .auth-dropdown,
  .auth-menu-wrapper:focus-within .auth-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Aday / işveren kartları */
:root {
  --dk-blue: #2563eb;
  --dk-deep: #1e3a8a;
  --dk-muted: #64748b;
  --dk-border: #e5e7eb;
  --dk-soft: #f8fafc;
}

.ad-card {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--dk-border);
  background: #fff;
  flex-direction: column;
}

.ad-card--candidate {
  background: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.06);
}

.ad-card--employer {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.ad-card__content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ad-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eef2ff;
  border: 1px solid #dbeafe;
  flex-shrink: 0;
}

.ad-card--employer .ad-card__icon {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.ad-card__title {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.ad-card__desc {
  margin: 4px 0 10px;
  font-size: 13px;
  color: var(--dk-muted);
  line-height: 1.35;
}

.ad-card__actions {
  display: flex;
  gap: 10px;
}

.ad-btn {
  height: 38px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition:
    background 0.15s ease,
    transform 0.12s ease,
    box-shadow 0.2s ease;
}

.ad-btn--outline {
  border: 2px solid #1e3a8a;
  color: #1e3a8a;
  background: #fff;
}

.ad-btn--outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.12);
}

.ad-btn--solid {
  background: #1e3a8a;
  color: #fff;
  border: 2px solid #1e3a8a;
}

.ad-btn--solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.18);
}

/* ==============================
   ENTERPRISE RENK OVERRIDES
   ============================== */

header {
  background-color: #1e3a8a !important;
}

.nav-link {
  color: #fff !important;
}

.current-lang {
  color: #fff !important;
}

.profile-link {
  color: #fff !important;
}

.logo-img {
  filter: brightness(0) invert(1) !important;
}

/* ==============================
   HAMBURGER / MOBİL & TABLET
   ============================== */

/* Hamburger buton (yalnızca <=1024 gösterilecek) */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}

.toggle-bar {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* JS: navbar-toggle.is-open olduğunda X ikonuna dönüşsün */
.navbar-toggle.is-open .toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.is-open .toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.is-open .toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobil drawer başlığı */
.navbar-header {
  display: none;
}

/* 0–1024: hamburger aktif, menü drawer gibi */
@media (max-width: 1024px) {
  .header-container {
    max-width: 100%;
  }

  span.nav-label {
    color: #000;
  }

  .navbar {
    height: 64px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--background);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    transition: right 0.25s ease;
    z-index: 10;
    overflow-y: auto;
  }

  /* JS: navbar-menu.is-open ile açılır */
  .navbar-menu.is-open {
    right: 0;
  }

  .navbar-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10px;
    border-bottom: 1px solid #e5e7eb;
  }

  .navbar-title img {
    height: 30px;
    width: auto;
  }

  ul.navbar-container {
    align-items: stretch;
    gap: 16px;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .logo-img {
    height: 20px;
    width: auto;
  }

  .dropdown-chevron svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: rgb(21 21 21);
    stroke-width: 1.7;
    transform: rotate(0deg);
    transition:
      stroke 0.2s ease,
      transform 0.2s ease;
  }

  .nav-link--primary:hover .dropdown-chevron svg,
  .nav-link-btn:hover .dropdown-chevron svg {
    stroke: #ffffff;
    transform: rotate(180deg);
  }

  /* Eğer dropdown açık/kapalı durumu için aria-expanded kullanıyorsan: */
  .nav-link-btn[aria-expanded="true"] .dropdown-chevron svg,
  .nav-link--primary[aria-expanded="true"] .dropdown-chevron svg {
    transform: rotate(180deg);
  }

  .nav-link-btn[aria-expanded="false"] .dropdown-chevron svg,
  .nav-link--primary[aria-expanded="false"] .dropdown-chevron svg {
    transform: rotate(0deg);
  }

  .nav-icon {
    background: #1e3a8a;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-item .dropdown-menu {
    background: none;
  }
  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--dk-border);
  }

  .nav-link,
  .nav-link-btn,
  .nav-link--primary {
    width: 100%;
    border-radius: 10px;
    padding: 10px 10px;
    box-shadow: none;
    gap: 10px;
  }

  /* Mobil dropdown: yüksekliği JS değil, class ile aç/kapat */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-item--has-children.is-open > .dropdown-menu {
    max-height: 600px;
    padding: 4px 0 8px;
  }

  .dropdown-item {
    padding: 8px 0 8px 18px;
  }

  .navbar-actions {
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }

  .auth-buttons {
    width: 100%;
    flex-direction: column;
  }

  .auth-buttons a,
  .auth-buttons button {
    width: 100%;
    min-width: 0;
  }

  /* Profil metnini dar ekranda gizle, sadece avatar kalsın */
  .profile-link .profile-text {
    display: none;
  }

  .language-selector {
    display: none;
  }
  .profile-img {
    width: 25px;
    height: 25px;
  }
  .profile-link {
    font-size: 10px;
  }
}
.row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
/* Küçük mobil için ufak optimizasyon */
@media (max-width: 480px) {
  .logo-img {
    height: 26px;
  }

  .navbar {
    gap: 8px;
  }
}

.layout {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.cv-main-content {
  flex: 1;
  min-width: 0;
}

/* Sol Sidebar */
.sidebar {
  width: 275px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .sidebar {
    width: 100%;
  }
}

/* İlerleme Kartı */
.progress-card {
  background: var(--section-bg-1);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.progress-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.progress-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  position: absolute;
  right: 0;
}

.progress-icon.complete {
  background: linear-gradient(to right, #10b981, #059669);
}

.progress-icon span {
  color: #000000;
  font-weight: bold;
  font-size: 13px;
}

.progress-icon.complete::before {
  content: "✓";
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.progress-icon.complete span {
  display: none;
}

.progress-header h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.progress-header p {
  color: #6b7280;
  font-size: 0.875rem;
}

.progress-header p.complete {
  color: #059669;
  font-weight: 600;
}

/* İlerleme Çubuğu */
.progress-bar {
  width: 100%;
  height: 0.75rem;
  background-color: #e5e7eb;
  border-radius: 9999px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.progress-fill.complete {
  background: linear-gradient(to right, #10b981, #059669);
}

.progress-count {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Bölümler Kartı */
.sections-card {
  background: var(--section-bg-1);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.sections-card h3 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.sections-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem;
  border-radius: var(--radius);
  background: #f9fafb;
  color: #374151;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-size: 0.875rem;
  border: 1px solid #cbd5e1;
}

.section-item:hover {
  background: #f3f4f6;
}

.section-item.active {
  background: linear-gradient(to right, #0096c7, #63bdf1);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.section-item.completed {
  background: #ecfdf5;
  color: #065f46;
}

.section-item.completed:hover {
  background: #d1fae5;
}

.section-icon {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: white;
}

.section-item.active .section-icon {
  background: rgba(255, 255, 255, 0.2);
}
.social-links img {
  height: 16px;
}

.main-content {
  flex: 1;
  padding: 50px 20px;
  text-align: center;
}

.footer {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #0f172a 50%, #1e293b 100%);
  color: white;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 0
  );
  background-size: 20px 20px;
  opacity: 0.5;
}

.footer-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.footer-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section h3 {
  color: #22d3ee;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #22d3ee, #3b82f6);
  border-radius: 1px;
}

.company-info {
  max-width: 300px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #22d3ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon::before {
  content: "⚓";
  font-size: 24px;
  color: white;
}

.logo-icon::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #22d3ee;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.logo-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #22d3ee;
  margin: 0;
}

.logo-text p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0;
}

.company-description {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.social-media h4 {
  color: #22d3ee;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #cbd5e1;
  transition: all 0.3s ease;
  border: 1px solid rgba(34, 211, 238, 0.2);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: #22d3ee;
  color: white;
  transform: translateY(-2px) scale(1.1);
  border-color: #22d3ee;
  box-shadow: 0 10px 20px rgba(34, 211, 238, 0.3);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::before {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-link:hover {
  color: #22d3ee;
  transform: translateX(8px);
}

.contact-info {
  max-width: 300px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: #22d3ee;
  flex-shrink: 0;
}

.contact-text {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-text a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #22d3ee;
}

.newsletter {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h4 {
  color: #22d3ee;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.newsletter p {
  color: #cbd5e1;
  font-size: 0.8rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 15px;
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: #94a3b8;
}

.newsletter-input:focus {
  outline: none;
  border-color: #22d3ee;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  background: linear-gradient(90deg, #22d3ee, #3b82f6);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.newsletter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.newsletter-btn:hover::before {
  left: 100%;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(34, 211, 238, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 20px 0;
}

.footer-bottom-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-evenly;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.9rem;
  text-align: center;
}

.heart {
  color: #ef4444;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.footer-bottom-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s ease;
}

.footer-bottom-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #22d3ee;
  transition: width 0.3s ease;
}

.footer-bottom-link:hover {
  color: #22d3ee;
}

.footer-bottom-link:hover::after {
  width: 100%;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave .shape-fill {
  fill: rgba(34, 211, 238, 0.1);
  animation: wave-animation 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes wave-animation {
  0%,
  100% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-25px);
  }
}

@media (max-width: 768px) {
  .footer {
    display: none;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-content {
    padding: 40px 15px 20px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .newsletter-form {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .company-info {
    max-width: 100%;
  }

  .contact-info {
    max-width: 100%;
  }
}
.section-item.completed .section-icon {
  background: #10b981;
  color: white;
}

.section-item.completed .section-icon::before {
  content: "✓";
  font-weight: bold;
}

.section-item.completed .section-icon svg {
  display: none;
}

.section-item.active .section-icon svg {
  color: white;
}

.section-icon svg {
  color: #6b7280;
}

.section-item span {
  font-weight: 500;
}
@media (max-width: 768px) {
  .close-navbar-menu {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
/* 1) Footer body altindaysa */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* 2) Footer bir wrapper icindeyse (en yaygin senaryo) */
body
  > :is(
    .page-wrapper,
    .site,
    .layout,
    #app,
    #root,
    #wrapper,
    .wrapper,
    .container
  ) {
  flex: 1 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* 3) Icerigi esnet (main/page/content hangisi varsa) */
body > :is(main, .page, .main, .content, #content),
body
  > :is(
    .page-wrapper,
    .site,
    .layout,
    #app,
    #root,
    #wrapper,
    .wrapper,
    .container
  )
  > :is(main, .page, .main, .content, #content) {
  flex: 1 0 auto;
}

/* 4) Footer’i alta it */
body > :is(footer, .footer, .site-footer),
body
  > :is(
    .page-wrapper,
    .site,
    .layout,
    #app,
    #root,
    #wrapper,
    .wrapper,
    .container
  )
  > :is(footer, .footer, .site-footer) {
  margin-top: auto;
}

#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* yarı saydam siyah arka plan */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* her şeyin üstünde */
}

#global-loader .loader-content img {
  width: 80px;
  height: 80px;
  animation: spin 1.2s linear infinite;
  filter: brightness(0) invert(1);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
