@font-face {
  font-family: 'Caveat';
  src: url('fonts/Caveat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8fafc;
    color: #0A2259;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: #fdf6e3;
  font-size: 1.1em;
  min-height: 120px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  flex-wrap: nowrap;
  overflow: visible;
}

.nav-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}

.nav-center-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

.nav-center-list .logo-text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #0A2259;
  letter-spacing: 1px;
  text-align: center;
  margin-right: 24px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: max-content;
}

.nav-center-list li a {
  text-decoration: none;
  color: #0A2259;
  font-weight: 500;
  font-size: 1.1em;
  transition: color 0.2s;
  white-space: nowrap;
  min-width: max-content;
  flex-shrink: 0;
  padding: 8px 4px;
}
.nav-center-list li a:hover {
  color: #2563eb;
}
.waitlist-btn {
  background: #FFC107;
  color: #0A2259;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  border: 2px solid #0A2259;
  text-decoration: none;
  font-size: 1em;
  margin-left: 16px;
  box-shadow: 2px 2px 0 #222;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  height: 42px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: max-content;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.waitlist-btn:hover {
  background: #ffd700;
  color: #222;
  box-shadow: 2px 4px 0 #FFC107;
}
.hero {
    margin-top: 32px;
    padding: 0 48px;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  margin-top: 32px;
}
.hero-text {
  text-align: left;
  max-width: 520px;
    margin: 0;
}
.hero-text h1 {
    font-size: 3em;
    font-weight: 900;
    margin: 0 0 18px 0;
    line-height: 1.1;
}
.hero-text p {
    font-size: 1.2em;
    margin-bottom: 28px;
    color: #0A2259;
}
.cta {
  background: #FFC107;
  color: #0A2259;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  border: 2px solid #0A2259;
  box-shadow: 2px 2px 0 #222;
  transition: background 0.2s, box-shadow 0.2s;
  margin-left: 24px;
  text-decoration: none;
  font-size: 0.95em;
  display: inline-block;
}
.cta:hover {
    background: #ffd700;
  color: #222;
}
.hero-illustration {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: -64px;
  margin-right: 40px;
}
.hero-illustration svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}
.hero-illustration img {
    width: 100%;
    max-width: 640px;
    height: auto;
}
.features-section {
  background: #f8fafc;
  padding: 70px 0 50px 0;
}
.features {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.feature-card {
  background: #f6f8fa;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 38px 28px;
  flex: 1 1 260px;
  max-width: 320px;
  text-align: left;
  margin-bottom: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid #e0e7ef;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0,121,107,0.13);
  border-color: #FFC107;
}
.feature-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
}
.feature-icon svg {
  width: 56px;
  height: 56px;
}
.feature h3 {
    color: #0A2259;
    font-size: 1.2em;
    margin: 0 0 8px 0;
    font-weight: 700;
}
.feature p {
    color: #0A2259;
    font-size: 1em;
    margin: 0;
}
.about {
    margin: 80px 48px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about h2 {
    font-size: 2em;
    font-weight: 900;
    margin-bottom: 18px;
}
.about ul {
    margin: 0 0 24px 18px;
    padding: 0;
    font-size: 1.1em;
    color: #0A2259;
}
.about-illustration {
    margin-top: 12px;
}
.logo-text,
.hero-text h1,
.about h2,
.feature h3 {
  font-family: 'Inter', Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo-img {
  height: 64px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.logo-icon a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon a:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-logo a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.footer-logo a:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: nowrap;
  min-width: 0;
  overflow: hidden;
}
.hero-emojis {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 0;
  margin-left: 32px;
}
.hero-emojis svg {
  width: 64px;
  height: 64px;
}
.no-more-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #0A2259;
  text-align: center;
  margin-bottom: 16px;
}
.no-more-img {
  display: block;
  max-width: 680px;
  width: 100%;
  height: auto;
  margin: 0;
}
.feature-card.handdrawn {
  border-radius: 60px 40px 80px 36px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(10,34,89,0.10);
  align-items: center;
  text-align: center;
  border: none;
  padding: 48px 32px 40px 32px;
  gap: 28px;
  margin-bottom: 36px;
  transition: box-shadow 0.2s;
}
.feature-card.handdrawn:hover {
  box-shadow: 0 16px 48px rgba(10,34,89,0.18);
}
.feature-card.handdrawn h3 {
  margin-top: 24px;
  margin-bottom: 18px;
  font-size: 1.3em;
}
.feature-card.handdrawn p {
  margin: 0 0 8px 0;
  font-size: 1.08em;
  color: #0A2259;
}
.feature-icon.handdrawn-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  width: 100%;
}
.feature-icon.handdrawn-icon svg {
  width: 80px;
  height: 80px;
}
.custom-feature-icon {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
}
.features-title {
  font-size: 2.8em;
  font-weight: 400;
  font-family: 'Inter', Arial, sans-serif;
  color: #0A2259;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 40px 0;
  padding-left: 48px;
  text-align: left;
}
.features-title a {
  color: #0A2259;
  text-decoration: none;
  transition: text-decoration 0.2s;
}
.features-title a:hover {
  text-decoration: underline;
}
.features-section .container {
  /* max-width ve padding kaldırıldı */
}
/* ABOUT SECTION */
.about-section {
  background: #f8fafc;
  padding: 64px 0 48px 0;
}
.about-section .container {
  /* max-width ve padding kaldırıldı */
}
.about-desc {
  font-size: 1.25rem;
  color: #334155;
  text-align: left;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: 48px;
  margin-top: 0;
}
.about-cta {
  margin-left: 48px;
  margin-top: 24px;
}
.about-btn {
  background: #0A2259;
  color: white;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(10, 34, 89, 0.15);
}
.about-btn:hover {
  background: #1a3a7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 34, 89, 0.25);
}
/* ABOUT PAGE */
.about-page {
  background: #f8fafc;
  padding: 80px 0 60px 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.about-page .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-page-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0A2259;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.about-page-intro {
  font-size: 1.4rem;
  color: #334155;
  margin-bottom: 60px;
  line-height: 1.6;
  font-weight: 500;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about-section-content {
  background: #f6f8fa;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 34, 89, 0.08);
  border: 1px solid rgba(10, 34, 89, 0.06);
}
.about-section-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0A2259;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.about-section-content p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-section-content p:last-child {
  margin-bottom: 0;
}
.about-section-content strong {
  color: #0A2259;
  font-weight: 600;
}
.about-page-cta {
  margin-top: 60px;
  text-align: center;
}
.back-home-btn {
  background: #0A2259;
  color: white;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(10, 34, 89, 0.15);
}
.back-home-btn:hover {
  background: #1a3a7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 34, 89, 0.25);
}
.about-illustration-img {
  display: block;
  margin: 0 auto 24px auto;
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(10,34,89,0.08);
  background: #fffbe6;
  object-fit: contain;
}
@media (max-width: 768px) {
  .about-illustration-img {
    max-width: 120px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .about-section .container {
    /* padding kaldırıldı */
  }
  .about-desc {
    font-size: 1.1rem;
    margin-left: 16px;
  }
  .about-cta {
    margin-left: 16px;
  }
  .about-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
  .about-page {
    padding: 60px 0 40px 0;
  }
  .about-page .container {
    padding: 0 16px;
  }
  .about-page-title {
    font-size: 2.4rem;
  }
  .about-page-intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  .about-content {
    gap: 32px;
  }
  .about-section-content {
    padding: 28px;
  }
  .about-section-content h2 {
    font-size: 1.5rem;
  }
  .about-section-content p {
    font-size: 1rem;
  }
  .about-page-cta {
    margin-top: 40px;
  }
  .back-home-btn {
    font-size: 1rem;
    padding: 14px 28px;
  }
}
@media (max-width: 480px) {
  .about-page {
    padding: 40px 0 30px 0;
  }
  .about-page-title {
    font-size: 2rem;
  }
  .about-page-intro {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }
  .about-content {
    gap: 24px;
  }
  .about-section-content {
    padding: 24px;
  }
  .about-section-content h2 {
    font-size: 1.3rem;
  }
  .about-section-content p {
    font-size: 0.95rem;
  }
  .about-page-cta {
    margin-top: 32px;
  }
  .back-home-btn {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}
@media (max-width: 900px) {
  .about-floating-img {
    opacity: 1;
  }
  .img1, .img2, .img3, .img4, .img5, .img6 {
    width: 60px !important;
    left: -30px !important;
    right: -30px !important;
    top: auto;
    bottom: auto;
  }
  .img1 { top: 10px !important; left: -30px !important; }
  .img2 { top: 80px !important; right: -30px !important; }
  .img3 { bottom: 30px !important; left: -30px !important; }
  .img4 { bottom: 60px !important; right: -30px !important; }
  .img5 { top: 50% !important; left: -30px !important; }
  .img6 { bottom: 10px !important; right: 10px !important; }
}
.about-deco-img {
  position: absolute;
  z-index: 0;
  opacity: 1 !important;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s;
  filter: drop-shadow(0 2px 8px rgba(10,34,89,0.08));
}
@media (max-width: 900px) {
  .about-deco-img { opacity: 1 !important; }
}
.img1 { left: 30px; top: 0px; width: 120px; }
@media (max-width: 900px) {
  .img1 { left: 10px; top: 0px; width: 40px; }
}
.img2 { left: 120px; top: 140px; width: 70px; }
.img3 { left: -70px; top: 30%; width: 90px; transform: translateY(-50%); }
.img4 { left: 60px; top: 45%; width: 60px; transform: translateY(-50%); }
.img5 { left: -50px; top: 70%; width: 80px; transform: translateY(-50%); }
.img6 { right: 200px; top: 80px; width: 70px; }
.img7 { right: -60px; top: 0px; width: 110px; }
.img8 { right: 80px; top: 80px; width: 60px; }
.img9 { right: -70px; top: 35%; width: 90px; transform: translateY(-50%); }
.img10 { right: 60px; top: 55%; width: 60px; transform: translateY(-50%); }
.img11 { right: -50px; top: 75%; width: 80px; transform: translateY(-50%); }
.img12 { right: 120px; top: 85%; width: 50px; transform: translateY(-50%); }
.img13 { left: 10%; top: 40%; width: 60px; }
.img14 { left: -60px; bottom: 12%; width: 70px; }
@media (max-width: 900px) {
  .img1 { left: 10px; top: 0px; width: 40px; }
  .img2 { left: 40px; top: 40px; width: 25px; }
  .img3 { left: -30px; top: 30%; width: 30px; transform: translateY(-50%); }
  .img4 { left: 20px; top: 45%; width: 20px; transform: translateY(-50%); }
  .img5 { left: -20px; top: 70%; width: 30px; transform: translateY(-50%); }
  .img6 { left: 40px; top: 80%; width: 18px; transform: translateY(-50%); }
  .img7 { right: -20px; top: 0px; width: 35px; }
  .img8 { right: 30px; top: 30px; width: 20px; }
  .img9 { right: -30px; top: 35%; width: 30px; transform: translateY(-50%); }
  .img10 { right: 20px; top: 55%; width: 20px; transform: translateY(-50%); }
  .img11 { right: -20px; top: 75%; width: 30px; transform: translateY(-50%); }
  .img12 { right: 40px; top: 85%; width: 18px; transform: translateY(-50%); }
  .img13 { left: 45%; top: 10%; width: 20px; }
  .img14 { left: -5px; bottom: 12%; width: 25px; }
}
.feature-blob {
  position: absolute;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s;
}
.features {
  position: relative;
}
.feature-blob1 { left: 0px; top: -40px; width: 60px; animation: blob-rotate1 7s linear infinite, blob-float1 3s ease-in-out infinite alternate; }
.feature-blob2 { left: 23%; top: -45px; width: 50px; animation: blob-rotate2 8s linear infinite, blob-float2 3.5s ease-in-out infinite alternate; }
.feature-blob3 { left: 49%; top: -35px; width: 50px; animation: blob-rotate3 6s linear infinite, blob-float3 4s ease-in-out infinite alternate; }
.feature-blob4 { right: 0px; top: -40px; width: 60px; animation: blob-rotate4 9s linear infinite, blob-float4 3.2s ease-in-out infinite alternate; }
.feature-blob5 { left: 10%; bottom: -35px; width: 45px; animation: blob-rotate5 7.5s linear infinite, blob-float5 4.2s ease-in-out infinite alternate; }
.feature-blob6 { left: 50%; bottom: -35px; width: 45px; animation: blob-rotate6 10s linear infinite, blob-float6 5s ease-in-out infinite alternate; }
.feature-blob7 { right: 10%; bottom: -35px; width: 45px; animation: blob-rotate7 8s linear infinite, blob-float7 3.8s ease-in-out infinite alternate; }



/* CONTACT PAGE */
.contact-page {
  background: #f8fafc;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0px 0;
}
.contact-container {
  max-width: 480px;
  margin: -1cm auto 0 auto;
  background: #f6f8fa;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(10,34,89,0.10);
  padding: 36px 28px 32px 28px;
  position: relative;
  z-index: 2;
}
.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0A2259;
  margin-bottom: 12px;
  letter-spacing: -1px;
  text-align: center;
}
.contact-desc {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 32px;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form label {
  font-size: 1rem;
  color: #0A2259;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid #e0e7ef;
  font-size: 1rem;
  font-family: inherit;
    background: #fff;
  color: #0A2259;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0A2259;
  background: #f8fafc;
}
.contact-btn {
  font-size: 1.1rem;
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(10,34,89,0.08);
}
.contact-btn:hover {
  background: #1a3a7a;
}
/* Contact blobs */
.contact-blob {
  position: absolute;
  z-index: 0;
  opacity: 1 !important;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s;
}
.blob1 { left: -60px; top: -40px; width: 120px; animation: blob-rotate1 8s linear infinite, blob-float1 4s ease-in-out infinite alternate; }
.blob2 { left: 20%; top: -50px; width: 70px; animation: blob-rotate2 10s linear infinite, blob-float2 4.5s ease-in-out infinite alternate; }
.blob3 { left: 45%; top: -60px; width: 90px; animation: blob-rotate3 7s linear infinite, blob-float3 5s ease-in-out infinite alternate; }
.blob4 { right: -60px; top: -40px; width: 110px; animation: blob-rotate4 9s linear infinite, blob-float4 4.2s ease-in-out infinite alternate; }
.blob5 { left: -50px; top: 40%; width: 80px; animation: blob-rotate5 8.5s linear infinite, blob-float5 4.8s ease-in-out infinite alternate; }
.blob6 { right: -50px; top: 30%; width: 70px; animation: blob-rotate6 11s linear infinite, blob-float6 5.2s ease-in-out infinite alternate; }
.blob7 { left: 10%; top: 70%; width: 60px; animation: blob-rotate7 7.5s linear infinite, blob-float7 4.6s ease-in-out infinite alternate; }
.blob8 { right: 15%; top: 65%; width: 60px; animation: blob-rotate8 10.5s linear infinite, blob-float8 5.1s ease-in-out infinite alternate; }
.blob9 { left: -40px; bottom: -40px; width: 90px; animation: blob-rotate9 8.2s linear infinite, blob-float9 4.3s ease-in-out infinite alternate; }
.blob10 { right: -40px; bottom: -40px; width: 80px; animation: blob-rotate10 9.8s linear infinite, blob-float10 4.7s ease-in-out infinite alternate; }
.blob11 { left: 30%; bottom: -50px; width: 70px; animation: blob-rotate11 8.7s linear infinite, blob-float11 4.9s ease-in-out infinite alternate; }
.blob12 { right: 30%; bottom: -50px; width: 60px; animation: blob-rotate12 10.2s linear infinite, blob-float12 5.3s ease-in-out infinite alternate; }
.blob13 { left: 35%; top: 85%; width: 60px; animation: blob-rotate13 7.8s linear infinite, blob-float13 4.4s ease-in-out infinite alternate; }
.blob14 { right: 35%; top: 80%; width: 60px; animation: blob-rotate14 9.3s linear infinite, blob-float14 5.5s ease-in-out infinite alternate; }
@keyframes blob-rotate1 { 100% { transform: rotate(360deg); } }
@keyframes blob-rotate2 { 100% { transform: rotate(-360deg); } }
@keyframes blob-rotate3 { 100% { transform: rotate(360deg); } }
@keyframes blob-rotate4 { 100% { transform: rotate(-360deg); } }
@keyframes blob-rotate5 { 100% { transform: rotate(360deg); } }
@keyframes blob-rotate6 { 100% { transform: rotate(-360deg); } }
@keyframes blob-rotate7 { 100% { transform: rotate(360deg); } }
@keyframes blob-rotate8 { 100% { transform: rotate(-360deg); } }
@keyframes blob-rotate9 { 100% { transform: rotate(360deg); } }
@keyframes blob-rotate10 { 100% { transform: rotate(-360deg); } }
@keyframes blob-rotate11 { 100% { transform: rotate(360deg); } }
@keyframes blob-rotate12 { 100% { transform: rotate(-360deg); } }
@keyframes blob-rotate13 { 100% { transform: rotate(360deg); } }
@keyframes blob-rotate14 { 100% { transform: rotate(-360deg); } }
@keyframes blob-float1 { 0% { transform: translateY(0); } 100% { transform: translateY(18px); } }
@keyframes blob-float2 { 0% { transform: translateY(0); } 100% { transform: translateY(-14px); } }
@keyframes blob-float3 { 0% { transform: translateY(0); } 100% { transform: translateY(12px); } }
@keyframes blob-float4 { 0% { transform: translateY(0); } 100% { transform: translateY(-16px); } }
@keyframes blob-float5 { 0% { transform: translateY(0); } 100% { transform: translateY(10px); } }
@keyframes blob-float6 { 0% { transform: translateY(0); } 100% { transform: translateY(-12px); } }
@keyframes blob-float7 { 0% { transform: translateY(0); } 100% { transform: translateY(14px); } }
@keyframes blob-float8 { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }
@keyframes blob-float9 { 0% { transform: translateY(0); } 100% { transform: translateY(16px); } }
@keyframes blob-float10 { 0% { transform: translateY(0); } 100% { transform: translateY(-13px); } }
@keyframes blob-float11 { 0% { transform: translateY(0); } 100% { transform: translateY(11px); } }
@keyframes blob-float12 { 0% { transform: translateY(0); } 100% { transform: translateY(-9px); } }
@keyframes blob-float13 { 0% { transform: translateY(0); } 100% { transform: translateY(8px); } }
@keyframes blob-float14 { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }

/* FOOTER */
.footer {
  width: 100%;
  background: #f8fafc;
  color: #334155;
  font-size: 1rem;
  padding: 48px 0 24px 0;
  margin-top: 0px;
  border-top: 1.5px solid #e0e7ef;
  overflow: visible !important;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Footer section içindeki dil seçici için özel stiller */
.footer-section .notion-language-selector {
  margin: 8px 0 16px 0;
  align-self: flex-start;
}

/* Footer bottom içindeki dil seçici için özel stiller */
.footer-bottom .notion-language-selector {
  align-self: center;
  position: relative;
  display: inline-block;
}

.footer-bottom .notion-lang-btn {
  background: transparent;
  border: 1px solid #e3e2e0;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', Arial, sans-serif;
  min-width: 100px;
}

.footer-bottom .notion-lang-btn:hover {
  background: #f7f6f3;
  border-color: #d3d2d0;
  color: #37352f;
}

.footer-bottom .notion-lang-btn:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.footer-bottom .notion-lang-dropdown {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e3e2e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  min-width: 180px;
  display: none;
  padding: 6px 0;
  max-height: 300px;
  overflow-y: auto;
  text-align: left;
}

.footer-bottom .notion-language-selector.open .notion-lang-dropdown {
  display: block;
}

.footer-section .notion-lang-btn {
  background: transparent;
  border: 1px solid #e3e2e0;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', Arial, sans-serif;
  min-width: 100px;
}

.footer-section .notion-lang-btn:hover {
  background: #f7f6f3;
  border-color: #d3d2d0;
  color: #37352f;
}

.footer-section .notion-lang-btn:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.footer-section .notion-lang-dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e3e2e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  min-width: 180px;
  display: none;
  padding: 6px 0;
  max-height: 300px;
  overflow-y: auto;
}

.footer-section .notion-language-selector.open .notion-lang-dropdown {
  display: block;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.footer-logo img {
  height: 64px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.footer-logo-text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #0A2259;
  letter-spacing: 1px;
}
.footer-section h3 {
  color: #0A2259;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}
.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-section ul li a {
  color: #334155;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-section ul li a:hover {
  color: #0A2259;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
    border-radius: 8px;
  border: 1px solid #e0e7ef;
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: #0A2259;
  border-color: #0A2259;
  transform: translateY(-2px);
}
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: #334155;
  transition: fill 0.2s;
}
.footer-social a:hover svg {
  fill: #fff;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e0e7ef;
  color: #64748b;
  font-size: 0.9rem;
  overflow: visible;
}
.coming-soon {
  background: #FFC107;
  color: #0A2259;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
  margin-left: 8px;
}
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .footer-bottom {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  .footer {
    padding: 32px 0 20px 0;
  }
}
.waitlist-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(10,34,89,0.18);
  backdrop-filter: blur(2px);
}
.waitlist-modal-content {
  background: #f6f8fa;
  margin: 80px auto;
  padding: 40px 32px 32px 32px;
  border-radius: 18px;
  max-width: 350px;
  box-shadow: 0 8px 32px rgba(10,34,89,0.13);
  position: relative;
    text-align: center;
}
.waitlist-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  color: #0A2259;
  cursor: pointer;
  font-weight: 700;
}
#waitlist-form label {
  display: block;
  margin-bottom: 8px;
  color: #0A2259;
  font-weight: 500;
  text-align: left;
}
#waitlist-form input[type="email"] {
  width: 100%;
  padding: 12px 0;
  padding-left: 8px;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  margin-bottom: 10px;
  background: #fff;
  color: #0A2259;
  box-sizing: border-box;
}
#waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: #0A2259;
  background: #f8fafc;
}

/* Newsletter form styles - using same design as waitlist */
#newsletter-form label {
  display: block;
  margin-bottom: 8px;
  color: #0A2259;
  font-weight: 500;
  text-align: left;
}

#newsletter-form {
  max-width: 50%;
  margin: 0 auto;
}

#newsletter-form input[type="email"] {
  width: 100%;
  padding: 12px 0;
  padding-left: 8px;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  margin-bottom: 10px;
  background: #fff;
  color: #0A2259;
  box-sizing: border-box;
}

#newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #0A2259;
  background: #f8fafc;
}
.waitlist-submit {
  background: #0A2259;
  color: #fff;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(10,34,89,0.08);
}
.waitlist-submit:hover {
  background: #1a3a7a;
}
.waitlist-success {
  color: #0A2259;
  font-size: 1.1rem;
  margin-top: 18px;
  font-weight: 600;
  background: #e0e7ef;
  border-radius: 8px;
  padding: 16px 0;
}

.newsletter-success {
  color: #0A2259;
  font-size: 1.1rem;
  margin-top: 18px;
  font-weight: 600;
  background: #e0e7ef;
  border-radius: 8px;
  padding: 16px 0;
}
@media (max-width: 600px) {
  .waitlist-modal-content {
    max-width: 95vw;
    padding: 28px 8px 24px 8px;
  }
  
  #newsletter-form {
    max-width: 90%;
  }
}
.footer-logo-section {
  grid-column: 1 / -1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Notion-style Language Selector */
.custom-language-selector {
  position: relative;
  display: inline-block;
}

.lang-selector-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #37352f;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  outline: none;
  min-width: 80px;
  justify-content: space-between;
}

.lang-selector-btn:hover {
  background-color: #f7f6f3;
}

.lang-selector-btn:focus {
  background-color: #f7f6f3;
}

.current-lang-flag {
  font-size: 16px;
  line-height: 1;
}

.current-lang-text {
  font-weight: 500;
  color: #37352f;
}

.lang-arrow {
  fill: #787774;
  transition: transform 0.2s ease;
  width: 12px;
  height: 12px;
}

.custom-language-selector.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #ffffff;
  border: 1px solid #e3e2e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  min-width: 200px;
  display: none;
  padding: 6px 0;
}

.custom-language-selector.open .lang-dropdown {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 14px;
  color: #37352f;
  justify-content: flex-start;
  text-align: left;
}

.lang-option:hover {
  background-color: #f7f6f3;
}

.lang-option.selected {
  background-color: #e3f2fd;
  color: #1976d2;
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.lang-name {
  font-weight: 400;
  color: inherit;
  flex: 1;
}



/* Responsive adjustments */
@media (max-width: 900px) {
  .lang-selector-btn {
    font-size: 0.9rem;
    padding: 6px 12px;
    min-width: 70px;
  }
  
  .lang-dropdown {
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .lang-selector-btn {
    font-size: 0.8rem;
    padding: 4px 8px;
    min-width: 60px;
  }
  
  .lang-dropdown {
    min-width: 160px;
  }
  
  .mobile-lang-selector-btn {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
}

/* Navbar Responsive Design */
@media (max-width: 1200px) {
  .navbar {
    padding: 0 20px;
  }
  
  .nav-center-list {
    gap: 16px;
    flex-wrap: nowrap;
  }
  
  .nav-center-list li a {
    font-size: 0.9em;
    white-space: nowrap;
    min-width: max-content;
    padding: 8px 6px;
  }
  
  .nav-center-list .logo-text {
    font-size: 2em;
    margin-right: 20px;
  }
}

@media (max-width: 1000px) {
  .navbar {
    padding: 0 16px;
  }
  
  .nav-center-list {
    gap: 12px;
    flex-wrap: nowrap;
  }
  
  .nav-center-list li a {
    font-size: 0.85em;
    white-space: nowrap;
    min-width: max-content;
    padding: 6px 4px;
  }
  
  .nav-center-list .logo-text {
    font-size: 1.8em;
    margin-right: 16px;
  }
  
  .waitlist-btn {
    font-size: 0.9em;
    padding: 8px 14px;
    margin-left: 12px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 12px;
    min-height: 100px;
  }
  
  .nav-center-list {
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
  }
  
  .nav-center-list li a {
    font-size: 0.8em;
    white-space: nowrap;
    min-width: max-content;
    padding: 6px 4px;
  }
  
  .nav-center-list .logo-text {
    font-size: 1.6em;
    margin-right: 12px;
    white-space: nowrap;
  }
  
  .cta {
    padding: 8px 16px;
    font-size: 0.85em;
    margin-left: 12px;
    white-space: nowrap;
  }
  
  .waitlist-btn {
    font-size: 0.85em;
    padding: 8px 12px;
    margin-left: 8px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 12px;
    min-height: auto;
    gap: 12px;
  }
  
  .nav-center-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    width: 100%;
  }
  
  .nav-center-list li a {
    font-size: 0.75em;
    padding: 4px 6px;
    white-space: nowrap;
    min-width: max-content;
  }
  
  .nav-center-list .logo-text {
    font-size: 1.5em;
    margin-right: 0;
    margin-bottom: 6px;
    white-space: nowrap;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }
  
  .cta {
    margin-left: 0;
    padding: 6px 12px;
    font-size: 0.8em;
    white-space: nowrap;
  }
  
  .waitlist-btn {
    font-size: 0.8em;
    padding: 6px 10px;
    margin-left: 0;
  }
  

}

@media (max-width: 480px) {
  .navbar {
    padding: 8px;
  }
  
  .nav-center-list {
    gap: 4px;
    flex-wrap: wrap;
  }
  
  .nav-center-list li a {
    font-size: 0.7em;
    padding: 3px 4px;
    white-space: nowrap;
    min-width: max-content;
  }
  
  .nav-center-list .logo-text {
    font-size: 1.3em;
    white-space: nowrap;
  }
  
  .cta {
    padding: 4px 8px;
    font-size: 0.75em;
    white-space: nowrap;
  }
  
  .waitlist-btn {
    font-size: 0.75em;
    padding: 4px 8px;
  }
  

}

/* Hero Section Responsive Design */
@media (max-width: 900px) {
  .hero {
    padding: 0 24px;
    margin-top: 16px;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-text h1 {
    font-size: 2.5em;
  }
  
  .hero-text p {
    font-size: 1.1em;
  }
  
  .hero-illustration {
    margin-top: 0;
    margin-right: 0;
    align-items: center;
  }
  
  .hero-illustration img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 0 16px;
    margin-top: 8px;
  }
  
  .hero-content {
    gap: 24px;
  }
  
  .hero-text h1 {
    font-size: 2em;
  }
  
  .hero-text p {
    font-size: 1em;
  }
}



/* Modern UI/UX Improvements */

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Enhanced loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Apply animations to key elements */
.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

.hero-illustration {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.feature-card {
  animation: fadeInScale 0.6s ease-out;
  animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced hover effects */
.nav-center-list li a {
  position: relative;
  overflow: hidden;
}

.nav-center-list li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFC107, #2563eb);
  transition: width 0.3s ease;
}

.nav-center-list li a:hover::after {
  width: 100%;
}

/* Enhanced CTA button */
.cta {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.cta:hover::before {
  left: 100%;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 4px 6px 0 #222, 0 8px 25px rgba(0,0,0,0.15);
}

/* Enhanced feature cards */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFC107, #2563eb, #FFC107);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,121,107,0.18);
}

/* Enhanced navbar */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(253, 246, 227, 0.95);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(253, 246, 227, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Enhanced language dropdown */
.lang-dropdown-btn {
  position: relative;
  overflow: hidden;
}

.lang-dropdown-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,193,7,0.1), rgba(37,99,235,0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lang-dropdown-btn:hover::before {
  opacity: 1;
}

.lang-dropdown-item {
  position: relative;
  overflow: hidden;
}

.lang-dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #FFC107;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.lang-dropdown-item:hover::before {
  transform: scaleY(1);
}

/* Enhanced form inputs */
.contact-form input,
.contact-form textarea,
#waitlist-form input[type="email"],
#newsletter-form input[type="email"] {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #FFC107, #2563eb) border-box;
}

.contact-form input:focus,
.contact-form textarea:focus,
#waitlist-form input[type="email"]:focus,
#newsletter-form input[type="email"]:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Enhanced buttons */
.contact-btn,
.waitlist-submit {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-btn::before,
.waitlist-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.contact-btn:hover::before,
.waitlist-submit:hover::before {
  width: 300px;
  height: 300px;
}

.contact-btn:hover,
.waitlist-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Enhanced blob animations */
.feature-blob {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* Enhanced footer */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FFC107, transparent);
}

/* Enhanced mobile experience */
@media (max-width: 768px) {
  .hero-text h1 {
    background: linear-gradient(135deg, #0A2259, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .feature-card {
    animation: fadeInUp 0.6s ease-out;
  }
  
  .navbar {
    backdrop-filter: blur(15px);
  }
}

/* Enhanced accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus indicators for better accessibility */
.nav-center-list li a:focus,
.cta:focus,
.lang-dropdown-btn:focus,
.contact-btn:focus,
.waitlist-submit:focus {
  outline: 2px solid #FFC107;
  outline-offset: 2px;
}

/* Enhanced visual hierarchy */
.hero-text h1 {
  background: linear-gradient(135deg, #0A2259 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.features-title {
  background: linear-gradient(135deg, #0A2259, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced scroll indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,193,7,0.2);
  z-index: 1000;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #FFC107, #2563eb);
  width: var(--scroll-width, 0%);
  transition: width 0.1s ease;
}

/* Enhanced loading states */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Enhanced error states */
.error {
  border-color: #ef4444 !important;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Enhanced success states */
.success {
  border-color: #10b981 !important;
  animation: success-pulse 0.6s ease-out;
}

@keyframes success-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 16px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  z-index: 101;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #0A2259;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  padding: 40px 24px 32px 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  overflow-y: auto;
  transition: transform 0.35s cubic-bezier(.4,1.6,.4,1), opacity 0.25s;
  transform: translateY(-100%);
  opacity: 0;
}

.mobile-menu.open {
  display: block !important;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-list li {
  margin: 0;
  border-bottom: 1px solid #eee;
}

.mobile-menu-list li a {
  display: block;
  padding: 20px 0;
  color: #0A2259;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25em;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-list li a:hover {
  background: #f7f7f7;
  color: #2563eb;
}

.mobile-menu-list li:last-child {
  border-bottom: none;
  margin-top: 32px;
}

.mobile-cta {
  background: #FFC107 !important;
  color: #0A2259 !important;
  font-weight: 700 !important;
  padding: 18px 0 !important;
  border-radius: 12px !important;
  border: 2px solid #0A2259 !important;
  text-align: center !important;
  margin-top: 0 !important;
  font-size: 1.15em !important;
  box-shadow: 2px 2px 0 #222 !important;
  display: block;
  width: 100%;
}

.mobile-cta:hover {
  background: #ffd700 !important;
  color: #222 !important;
}

@media (max-width: 900px) {
  .mobile-menu {
    padding: 32px 12px 24px 12px;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    padding: 24px 8px 16px 8px;
  }
}

body.menu-open {
  overflow: hidden !important;
}

/* Overlay arka plan için (isteğe bağlı) */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.25);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.25s;
}
.mobile-menu.open ~ .mobile-menu-overlay {
  display: block;
  opacity: 1;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 600px) {
  .footer-bottom-content {
    flex-direction: column;
    gap: 8px;
  }
}

.notion-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Inter', Arial, sans-serif;
  border-radius: 6px;
  transition: background 0.15s;
  font-weight: 500;
  line-height: 1.4;
}
.notion-lang-option:hover {
  background: #f7f6f3;
}
.notion-lang-option.selected {
  background: #e3e2e0;
  font-weight: 700;
}
.notion-lang-flag {
  font-size: 18px;
  margin-right: 8px;
  display: inline-block;
}
.notion-lang-name, .notion-lang-text {
  color: #37352f;
  font-size: 15px;
  font-family: 'Inter', Arial, sans-serif;
}

