/* Genel Stiller */
:root {
  --dark-blue: #0a0a0f;
  --light-text: #e0e0e0;
  --accent-gradient: linear-gradient(90deg, #a7b0d4 0%, #d4a7b0 100%);
  --button-gradient: linear-gradient(90deg, #6b8afd 0%, #e279f3 100%);
  --gradient: linear-gradient(90deg, #fd6b8b 0%, #e279f3 100%);
  --hero-title-gradient: linear-gradient(
    90deg,
    #6b8afd 0%,
    #d4a7b0 50%,
    #e279f3 100%
  );
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--dark-blue);
  color: var(--light-text);
  line-height: 1.6;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-attachment: fixed;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Header */
header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 24px;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
  /* Navigasyon öğelerini dikeyde ortala */
}

nav ul li {
  display: flex;
  align-items: center;
  /* İçindeki öğeleri dikeyde ortala */
}

nav ul li a {
  font-weight: 600;
  padding: 10px 0;
  /* Dikey dolguyu düğmeyle eşleşecek şekilde ayarla */
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffffff;
}

.btn-contact {
  background: var(--button-gradient);
  padding: 20px 10px;
  border-radius: 20px;
  font-weight: 600;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(107, 138, 253, 0.4);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(107, 138, 253, 0.6);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero-title span {
  background: var(--hero-title-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: none;
  /* Bulanıklığı tamamen gidermek için text-shadow kaldırıldı */
  color: var(--light-text);
}

.btn-main {
  background: white;
  color: rgb(14, 14, 14);
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(226, 121, 243, 0.7);
}

.hero-image {
  position: absolute;
  bottom: -80px;
  /* Karakteri aşağıya doğru kaydır */
  right: 0px;
  /* Karakteri sağa dayalı tut */
  z-index: -1;
  /* İçeriğin arkasında olmalı */
  width: 350px;
  /* Karakter boyutunu biraz artır */
  height: auto;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

/* Yeni global gradyanlar için body::before ve body::after */
body::before,
body::after {
  content: "";
  position: fixed;
  /* Sayfayla birlikte kaymaması için fixed kullandım */
  border-radius: 50%;
  filter: blur(250px);
  /* Daha fazla blur */
  opacity: 0.5;
  /* Daha belirgin */
  z-index: -2;
}

body::before {
  width: 1000px;
  /* Parlama alanını ayarla */
  height: 1000px;
  /* Parlama alanını ayarla */
  background: radial-gradient(circle, rgba(107, 138, 253, 0.4), transparent);
  /* Opaklığı ayarla */
  bottom: -400px;
  /* Projelerin altından yansıması için yukarıya doğru */
  left: 50%;
  transform: translateX(-100%);
  /* Sol alt köşeden yansıması için */
}

body::after {
  width: 1100px;
  /* Parlama alanını ayarla */
  height: 1100px;
  /* Parlama alanını ayarla */
  background: radial-gradient(circle, rgba(226, 121, 243, 0.4), transparent);
  /* Opaklığı ayarla */
  bottom: -450px;
  /* Projelerin altından yansıması için yukarıya doğru */
  right: 50%;
  transform: translateX(100%);
  /* Sağ alt köşeden yansıması için */
}

/* Projects Section */
.projects {
  padding: 80px 0;
  text-align: center;
  /* Başlığı ortalamak için */
}

.projects .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
  /* Başlığın içeriğini ortala */
  width: fit-content;
  /* Genişliği içeriğe göre ayarla */
  margin: 0 auto;
  /* Yatayda ortala */
}

.project-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  /* Grid'i yatayda ortala */
}

.project-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--border-color);
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 100%;
  /* Mobil görünümde kartların tam genişliği almasını sağlar */
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 30px rgba(107, 138, 253, 0.4),
    0 8px 40px rgba(0, 0, 0, 0.2);
}

.project-card .project-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card .project-image-single {
  height: 600px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 16px;
  color: var(--light-text);
  height: 100px;
  margin-bottom: 20px;
}

.project-languages {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  /* Dil ikonları ile açıklama arasına boşluk */
  flex-wrap: wrap;
  /* Gerekirse ikonların alt satıra geçmesini sağla */
}

.project-languages i {
  font-size: 28px;
  /* Dil ikon boyutu */
  color: rgba(255, 255, 255, 0.7);
  /* İkon rengi */
  transition: color 0.3s ease;
}

.project-languages i:hover {
  color: #ffffff;
  /* Hover durumunda daha parlak renk */
}

.project-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-project {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--button-gradient);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(226, 121, 243, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.btn-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-project i {
  font-size: 16px;
}

.btn-project:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(226, 121, 243, 0.5);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  margin-top: 50px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  /* Altbilgi için boşluk */
}

.social-links a {
  display: block;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-links img {
  /* Eski img stilini kaldır veya yorum satırı yap */
  /* width: 24px;
    height: 24px;
    filter: brightness(0.8) invert(1); */
}

.social-links a i {
  font-size: 24px;
  /* Font Awesome ikon boyutu */
  color: var(--light-text);
  /* İkon rengi */
  transition: color 0.3s ease;
  /* Renk geçiş efekti */
}

.social-links a:hover i {
  color: #ffffff;
  /* Hover durumunda daha parlak renk */
}

/* Desktop Only */
.social-links.mobile-only {
  display: none;
  /* Masaüstünde mobil sosyal linkleri gizle */
}

/* Mobile Only */
@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 16px;
  }

  .btn-main {
    font-size: 16px;
    padding: 12px 25px;
  }

  .hero-image {
    bottom: -50px;
    right: 0px;
    width: 250px;
  }

  header .container {
    display: flex;
    /* Flex container olduğundan emin ol */
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .logo {
    display: flex;
  }

  nav.main-nav {
    position: fixed;
    /* Yan menü olarak konumlandır */
    top: 0;
    right: -100%;
    /* Başlangıçta gizli */
    width: 70%;
    /* Menü genişliği */
    height: 100%;
    background-color: var(--dark-blue);
    /* Menü arka planı */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition:
      right 0.3s ease-in-out,
      visibility 0.3s ease-in-out;
    /* visibility transition ekle */
    z-index: 1000;
    /* Diğer her şeyin üzerinde olsun */
    display: none;
    /* Varsayılan olarak gizli */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    visibility: hidden;
    /* Varsayılan olarak gizli */
  }

  nav.main-nav.active {
    right: 0;
    /* Aktif olduğunda görünür */
    visibility: visible;
    /* Aktif olduğunda görünür */
    display: flex;
    /* Aktif olduğunda görünür */
  }

  nav.main-nav ul {
    flex-direction: column;
    gap: 25px;
    padding: 0;
  }

  nav.main-nav ul li a {
    font-size: 20px;
    padding: 10px 0;
  }

  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    /* Hamburger menüyü sağa it */
    z-index: 1001;
  }

  .hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--light-text);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }

  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .btn-contact {
    margin-top: 0;
    /* Yan menü içindeki düğme için boşluğu kaldır */
    padding: 12px 25px;
    /* Düğme boyutunu ayarla */
    font-size: 16px;
    /* Düğme yazı tipi boyutunu ayarla */
  }

  .project-card .project-image {
    height: 150px;
  }

  .project-card .project-image-single {
    height: 150px;
  }

  .projects .container {
    /* Bu stilin etkisi kaldırıldı */
  }

  .project-cards-grid {
    grid-template-columns: 1fr;
    /* Mobil için alt alta */
    width: 100%;
    /* Mobil görünümde tam genişlik */
  }

  .project-card {
    padding: 20px;
    max-width: 100%;
    /* Mobil görünümde kartların tam genişliği almasını sağlar */
  }

  .project-card h3 {
    font-size: 20px;
  }

  .project-card p {
    font-size: 14px;
  }

  .project-buttons {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
  }

  .btn-project {
    flex: 1;
    justify-content: center;
  }

  .btn-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* Mobil görünümde masaüstü sosyal linkleri gizle */
  .social-links.desktop-only {
    display: none;
  }

  /* Mobil görünümde mobil sosyal linkleri göster */
  .social-links.mobile-only {
    display: flex;
    /* Flex olarak göster */
    margin-top: 30px;
    /* Yan menüdeki diğer öğelerden biraz boşluk bırak */
  }

  /* Pricing mobile styles */
  .pricing {
    padding: 60px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .pricing-header h3 {
    font-size: 24px;
  }

  .price .amount {
    font-size: 36px;
  }

  .pricing-features li {
    font-size: 14px;
    padding: 10px 0;
  }
}

/* Düğme Metni Uzamasını Engelle */
.btn-main,
.btn-project,
.btn-contact {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  /* İçeriğe göre genişliği sınırlar */
}

/* Masaüstü görünümünde hamburger menüyü gizle */
@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }

  /* Masaüstünde navigasyonu göster */
  .main-nav {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    transition: none;
    z-index: auto;
    flex-direction: row;
    visibility: visible;
    align-items: center;
    /* Navigasyon öğelerini dikeyde ortala */
  }

  .main-nav ul {
    flex-direction: row;
    gap: 30px;
    padding: 0;
    align-items: center;
    /* Navigasyon öğelerini dikeyde ortala */
  }

  .main-nav ul li a {
    font-size: initial;
    padding: 10px 0;
    /* Masaüstü bağlantıları için dikey dolguyu ayarla */
  }

  .btn-contact {
    margin-top: 0;
    padding: 20px 10px;
    font-size: initial;
    box-shadow: 0 0 15px rgba(107, 138, 253, 0.4);
    /* Orijinal parlak gölgeyi geri getir */
  }

  .btn-contact:hover {
    box-shadow: 0 0 25px rgba(107, 138, 253, 0.6);
    /* Hover'da daha parlak gölge */
  }

  /* Masaüstünde mobil sosyal linkleri gizle */
  .social-links.mobile-only {
    display: none;
  }

  /* Masaüstünde masaüstü sosyal linkleri göster */
  .social-links.desktop-only {
    display: flex;
    margin-top: 0;
  }

  footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}

/* Features Section */
.features {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--border-color);
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 30px rgba(107, 138, 253, 0.4),
    0 8px 40px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.feature-card p {
  font-size: 16px;
  color: var(--light-text);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  background: var(--hero-title-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* About Section */
.about {
  padding: 80px 0;
  text-align: center;
}

.about p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.8;
  color: var(--light-text);
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(107, 138, 253, 0.05) 0%, rgba(226, 121, 243, 0.05) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(107, 138, 253, 0.2);
  border-color: rgba(107, 138, 253, 0.3);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(107, 138, 253, 0.1) 0%, rgba(226, 121, 243, 0.1) 100%);
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.price {
  margin-bottom: 30px;
}

.price .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--light-text);
}

.price .amount {
  font-size: 48px;
  font-weight: 700;
  background: var(--button-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.price .period {
  font-size: 16px;
  color: var(--light-text);
  opacity: 0.7;
}

.pricing-features {
  margin-bottom: 30px;
  flex: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: #4caf50;
  font-size: 18px;
  min-width: 20px;
}

.pricing-action {
  margin-top: auto;
  padding-top: 30px;
}

.pricing-action .btn-main {
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
}

footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 14px;
  color: var(--light-text);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.social-links a {
  font-size: 24px;
  color: var(--light-text);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.social-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.social-links img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.social-links a i {
  font-size: 24px;
  /* Font Awesome ikon boyutu */
  vertical-align: middle;
}

.social-links a:hover i {
  color: #ffffff;
  /* Hover durumunda ikon rengi */
}

.social-links.mobile-only {
  display: none;
  /* Varsayılan olarak mobil sosyal bağlantıları gizle */
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 16px;
  }

  .btn-main {
    padding: 12px 25px;
    font-size: 16px;
  }

  .hero-image {
    width: 250px;
    bottom: -50px;
  }

  header .container {
    flex-wrap: wrap;
  }

  .logo {
    display: flex;
  }

  nav.main-nav {
    flex-basis: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark-blue);
    position: absolute;
    top: 80px;
    /* Header yüksekliğine göre ayarla */
    left: 0;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    z-index: 1000;
  }

  nav.main-nav.active {
    display: flex;
  }

  nav.main-nav ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  nav.main-nav ul li a {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }

  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
  }

  .hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--light-text);
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .btn-contact {
    display: none;
    /* Mobil menüde gizle */
  }

  .projects .container {
    /* Bu stilin etkisi kaldırıldı */
  }

  .project-cards-grid {
    grid-template-columns: 1fr;
    /* Mobil için alt alta */
    width: 100%;
    /* Mobil görünümde tam genişlik */
  }

  .project-card {
    margin: 0 auto;
  }

  .project-card h3 {
    font-size: 22px;
  }

  .project-card p {
    font-size: 15px;
  }

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

  .btn-project {
    width: 100%;
  }

  .social-links.desktop-only {
    display: none;
    /* Masaüstü sosyal bağlantıları mobil görünümde gizle */
  }

  .social-links.mobile-only {
    display: flex;
    /* Mobil sosyal bağlantıları göster */
    margin-top: 20px;
  }
}

.btn-main,
.btn-project {
  white-space: nowrap;
  /* Metnin tek satırda kalmasını sağlar */
}

@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }

  .main-nav {
    display: flex !important;
    /* Masaüstünde her zaman görünür olmalı */
  }

  .main-nav ul {
    flex-direction: row;
  }

  .main-nav ul li a {
    text-align: left;
  }

  .btn-contact {
    display: block;
    /* Masaüstünde görünür */
  }

  .btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(107, 138, 253, 0.6);
  }

  .social-links.mobile-only {
    display: none;
  }

  .social-links.desktop-only {
    display: flex;
  }

  footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999; /* z-index değerini artırdım */
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--dark-blue);
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--border-color);
  box-shadow: 0 0 30px rgba(107, 138, 253, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

/* Özel kaydırma çubuğu stilleri */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6b8afd 0%, #e279f3 100%);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7b9afd 0%, #f289f3 100%);
}

/* Firefox için kaydırma çubuğu stilleri */
.modal-content {
  scrollbar-width: thin;
  scrollbar-color: #6b8afd rgba(255, 255, 255, 0.05);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--light-text);
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #ffffff;
}

.modal h2 {
  font-size: 32px;
  margin-bottom: 30px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  margin-top: 10px;
  font-size: 16px;
  color: var(--light-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-size: 16px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #6b8afd;
  box-shadow: 0 0 15px rgba(107, 138, 253, 0.3);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group select option {
  background-color: var(--dark-blue);
  color: var(--light-text);
}

.checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: not-allowed;
  opacity: 0.7;
}

.checkbox-group label {
  font-size: 14px;
  color: var(--light-text);
  opacity: 0.8;
  line-height: 1.4;
}

.contact-form .btn-main {
  margin-top: 10px;
  align-self: flex-start;
  border-radius: 10px;
  width: 100%;
}

/* Pricing Modal Styles */
.pricing-modal-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-modal-header h2 {
  margin-bottom: 15px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.selected-plan {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.plan-badge {
  background: var(--button-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.plan-price {
  font-size: 24px;
  font-weight: 700;
  background: var(--button-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.pricing-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .form-buttons {
    flex-direction: column;
  }

  .btn-secondary {
    width: 100%;
    padding: 12px 25px;
    font-size: 16px;
  }

  .modal-content {
    padding: 30px 20px;
    width: 95%;
    max-height: 85vh;
  }

  .modal-content::-webkit-scrollbar {
    width: 6px;
  }

  .modal h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
    font-size: 14px;
  }

  .contact-form .btn-main {
    width: 100%;
  }
}

.form-group input[type="date"] {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-size: 16px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  width: 100%;
  cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
  cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.form-group input[type="date"]:focus {
  outline: none;
  border-color: #6b8afd;
  box-shadow: 0 0 15px rgba(107, 138, 253, 0.3);
}

.meeting-details {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil görünüm için ek stiller */
@media (max-width: 768px) {
  .form-group input[type="date"],
  .form-group select {
    font-size: 14px;
    padding: 10px;
  }
}

.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  padding: 15px 30px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Meeting Widget Styles */
.meeting-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.meeting-widget-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--button-gradient);
  color: white;
  padding: 20px 25px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 138, 253, 0.4);
}

.meeting-widget-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 138, 253, 0.6);
}

.meeting-widget-button i {
  font-size: 20px;
}

.meeting-widget-content {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 400px;
  background-color: var(--dark-blue);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  padding: 0;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}

.meeting-widget-content.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.meeting-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  background-color: var(--dark-blue);
  z-index: 1;
}

.meeting-widget-header h3 {
  font-size: 20px;
  margin: 0;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.close-widget {
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.close-widget:hover {
  color: #ffffff;
}

.meeting-form {
  padding: 20px;
}

/* Mobil görünüm için ek stiller */
@media (max-width: 768px) {
  .meeting-widget {
    bottom: 20px;
    right: 20px;
  }

  .meeting-widget-button {
    padding: 12px 20px;
    font-size: 14px;
  }

  .meeting-widget-button i {
    font-size: 18px;
  }

  .meeting-widget-content {
    bottom: 80px;
    right: 20px;
    width: calc(100% - 40px);
    max-height: calc(100vh - 100px);
  }

  .meeting-widget-header {
    padding: 15px;
  }

  .meeting-widget-header h3 {
    font-size: 18px;
  }

  .meeting-form {
    padding: 15px;
  }
}

/* Notification System */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.notification-container.active {
  transform: translateX(0);
}

.notification {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--dark-blue);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 300px;
  max-width: 400px;
}

.notification.success {
  border-left: 4px solid #4caf50;
}

.notification.error {
  border-left: 4px solid #f44336;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification.success .notification-icon {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}

.notification.error .notification-icon {
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
}

.notification-icon i {
  font-size: 20px;
}

.notification-content {
  flex-grow: 1;
}

.notification-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--light-text);
}

.notification-message {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.notification-close:hover {
  opacity: 1;
}

/* Mobil görünüm için ek stiller */
@media (max-width: 768px) {
  .notification-container {
    top: auto;
    bottom: 20px;
    right: 20px;
    left: 20px;
  }

  .notification {
    min-width: auto;
    width: 100%;
  }
}
