:root {
  --primary: #3498db;
  --primary-dark: #2980b9;
  --secondary: #e74c3c;
  --dark: #1a1a1a;
  --light: #f4f7f6;
  --white: #ffffff;
  --gray: #95a5a6;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container-wide {
  max-width: 1600px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  padding: 10px 30px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}

.navbar.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 30px;
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  max-width: 100%;
}

.nav-top {
  display: contents; /* Desktop'ta yapıyı bozmaması için */
}

.logo {
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  color: var(--dark);
  letter-spacing: -1px;
}

.logo span {
  color: var(--primary);
}


.navbar.scrolled .logo {
  color: var(--dark);
}

/* On hero background, logo should be white initially if navbar is transparent, 
   but since we use a blurred background, dark logo is fine. 
   Let's make it white for better contrast on hero if not scrolled. */
.navbar:not(.scrolled) .logo {
  color: var(--white);
}
.navbar:not(.scrolled) .nav-links a {
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px; /* Boşluk artırıldı */
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a i {
  margin-right: 8px;
  font-size: 14px;
}

.mobile-header, .mobile-footer {
  display: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary) !important;
}

.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  transition: var(--transition);
  line-height: 1; /* Hizalama için */
}

/* Submenu */
.has-submenu {
  position: relative;
}

.submenu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.submenu-toggle i {
  font-size: 10px;
}

.submenu-list {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(20px);
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 170px; /* Biraz daraltıldı */
  padding: 8px 0; /* İç boşluklar küçültüldü */
  border-radius: 12px; /* Köşeler biraz daha kibar */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Gölge de küçültüldü */
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .submenu-list {
  background: rgba(15, 23, 42, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
}

.navbar:not(.scrolled) .submenu-list {
  background: rgba(15, 23, 42, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
}

.has-submenu:hover .submenu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

/* En sağdaki kullanıcı menüsünün ekrandan taşmaması için sağa hizalama */
.user-menu .submenu-list {
  left: auto;
  right: 0;
}

.submenu-list li a {
  padding: 8px 20px; /* Link boşlukları daraltıldı */
  display: block;
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.submenu-list li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #93c5fd !important;
  padding-left: 25px; /* Hover animasyonu küçültüldü */
}

.submenu-list .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}

/* Elegant User Profile Button (Desktop) */
@media (min-width: 769px) {
  .user-name-btn {
    background: rgba(52, 152, 219, 0.08); /* Hafif mavi arkaplan */
    padding: 6px 14px !important; /* Biraz daha kibar bir boşluk */
    border-radius: 50px; /* Hap şeklinde */
    border: 1px solid rgba(52, 152, 219, 0.15);
    font-weight: 600 !important;
    font-size: 14px !important; /* Yazı boyutu küçültüldü */
    color: var(--primary) !important;
    transition: all 0.3s ease;
  }

  .user-name-btn i.fa-user-circle {
    font-size: 14px;
  }

  .user-name-btn:hover {
    background: rgba(52, 152, 219, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.15);
  }

  /* Sayfa en üstteyken (scrolled değilken) buton stili */
  .navbar:not(.scrolled) .user-name-btn {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white) !important;
  }

  .navbar:not(.scrolled) .user-name-btn:hover {
    background: rgba(255, 255, 255, 0.25);
  }
}

/* Tablet Responsiveness */
@media (max-width: 1100px) and (min-width: 769px) {
  .nav-links {
    gap: 15px; /* Tablette aralıkları daralt */
  }
  .nav-links a {
    font-size: 14px; /* Yazı boyutunu küçült */
  }
  .logo {
    font-size: 20px;
  }
  .navbar {
    padding: 10px 15px; /* Navbar kenar boşluklarını daralt */
  }
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--dark);
  z-index: 9999;
  transition: var(--transition);
  padding: 10px;
  margin-right: -10px;
}

@media (max-width: 768px) {
  .navbar {
    width: 95%;
    padding: 10px 20px;
    height: 60px;
    display: flex;
    align-items: center;
    /* overflow: hidden; KALDIRILDI! Bu dropdownların kırpılmasına neden oluyordu */
    border-radius: 100px; /* Hap şeklinde kalsın */
  }

  /* Aktif olduğunda arkaplanı biraz daha belirgin yapabiliriz, ama yüksekliği değişmeyecek */
  .navbar.active {
    background: rgba(255, 255, 255, 0.98);
  }

  .navbar .container {
    width: 100%;
    position: relative; /* Dropdown menü buna göre pozisyonlanacak */
  }

  .nav-top {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
  }

  .logo {
    font-size: 22px;
    color: var(--dark) !important;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: var(--dark) !important;
    cursor: pointer;
    transition: none;
  }

  .navbar.active .menu-toggle {
    transform: none !important;
    color: var(--dark) !important;
  }

  /* Navigation Links - Classic Absolute Dropdown */
  .nav-links {
    position: absolute;
    top: 60px; /* Navbar'ın hemen altında */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 15px 10px;
    flex-direction: column;
    gap: 0;
    
    /* Temiz bir Fade-in animasyonu */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
  }

  .navbar.active .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar:not(.scrolled).active .nav-links a {
    color: var(--dark) !important;
  }


  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    padding: 16px 5px;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark) !important;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: flex-start; /* Sola yaslı */
  }

  /* Sadece soldaki ana ikonları şekillendir, sağdaki ok (chevron) ikonunu bozma */
  .nav-links a > i:first-child {
    width: 24px;
    color: var(--primary);
    font-size: 18px;
    text-align: center;
    margin-right: 0;
  }


  /* Submenu Fixes */
  .has-submenu {
    width: 100%;
  }

  .submenu-list {
    display: block; /* Animasyon için block olmalı */
    position: static;
    transform: none;
    width: 100%;
    background: rgba(15, 23, 42, 0.96);
    padding: 0; /* Kapalıyken padding sıfır olmalı */
    border-radius: 12px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.18);
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden; /* Masaüstünden gelen gizliliği ezmek için */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .submenu-list .divider {
    display: none;
  }

  .has-submenu.active .submenu-list {
    max-height: 600px; /* Elemanların sığacağı kadar büyük bir değer */
    opacity: 1;
    visibility: visible; /* EN KRİTİK DÜZELTME: Görünür yap */
  }

  .submenu-list li {
    border-bottom: none; /* Alt menü elemanlarında çizgi olmasın */
    width: 100%;
  }

  .submenu-list li a {
    padding: 10px 20px; /* Sola hizalama için padding */
    font-size: 15px;
    color: var(--white) !important;
    font-weight: 500;
    width: 100%;
    justify-content: flex-start;
  }

  /* Button Adjustment */
  .nav-links .btn-primary {
    margin-top: 20px;
    width: 100%;
    height: 50px;
    justify-content: center;
    border-radius: 15px !important;
    font-size: 16px;
  }
}

.navbar:not(.scrolled) .menu-toggle {
  color: var(--white);
}

.btn-primary {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 22px; /* Boyut küçültüldü */
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 15px; /* Yazı boyutu optimize edildi */
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-flex; /* Hizalama için flex yapıldı */
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s;
}

.nav-links a.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

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

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition:
    opacity 1.5s ease-in-out,
    transform 10s linear;
  transform: scale(1.1);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Parlaklık iyice düşürüldü: Merkez 0.45, Kenarlar 0.6 oranında karartıldı */
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 0, 0, 0.45) 5%, rgba(0, 0, 0, 0.6) 50%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
  transition: background 0.3s ease;
}

.hero-container {
  position: relative;
  z-index: 1;
  pointer-events: none; /* Metinlerin üzerinden fare geçince arkadaki spotlight çalışsın */
}

.hero-content {
  max-width: 950px;
  margin: 0 auto;
  padding: 40px;
  pointer-events: auto; /* İçerik tıklanabilir kalsın */
  perspective: 1000px; /* 3D animasyon için */
}

.hero-subtitle {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(30px);
}

.hero h1 {
  font-size: 84px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2; /* Kırpılmayı önlemek için satır yüksekliği artırıldı */
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Daha yumuşak gölge */
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
}

.hero p {
  font-size: 24px;
  margin-bottom: 45px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Daha yumuşak gölge */
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(30px);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

/* Cities Grid */
.section-title {
  text-align: center;
  margin: 20px 0 50px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
}

.section-title p {
  color: var(--gray);
  font-size: 18px;
}

/* Cities Grid */
.section {
  padding: 60px 0; /* Boşluklar iyice optimize edildi */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px; /* Daha kompakt boyut */
  gap: 20px;
  margin: 0 auto;
  width: 100%;
}

.city-card.city-card-wide {
  grid-column: span 2; /* Geniş kartlar 2 kolon kaplar */
}

@media (max-width: 1400px) {
  .cities-grid {
    gap: 25px;
    grid-auto-rows: 450px;
  }
}

@media (max-width: 1100px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .city-card.city-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .cities-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 400px;
  }
  .city-card.city-card-wide {
    grid-column: span 1;
  }
}

.city-card {
  position: relative;
  height: 100%; /* auto-rows'a uyması için */
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%) blur(2px); /* Tamamen renksiz değil, solgun ve hafif bulanık */
  transition:
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.6s ease;
}

.city-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) blur(0); /* Renkli ve net dönüşüm */
}

.city-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px); /* Daha güçlü buzlu cam etkisi */
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transition: all 0.4s ease;
}

.city-card:hover .city-overlay {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px);
}

.city-card:hover .city-content h3 {
  color: var(--dark) !important;
}

.city-content h3 {
  color: var(--white) !important;
  font-size: 18px; /* Yazılar daha da kompakt */
  font-weight: 700;
}
.city-tag {
  color: var(--white) !important; /* Maviden beyaza çekildi, daha lüks duracak */
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-explore {
  background: var(--white);
  color: var(--dark);
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.btn-explore i {
  font-size: 20px;
}

.city-card:hover .btn-explore {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-45deg);
}

.city-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
  z-index: 1;
}

@media (max-width: 992px) {
  .cities-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .mosaic-item.span-2 {
    grid-column: span 2;
  }
}

/* Scroll Snapping Fix for Navigation */
html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .city-section h2 {
    font-size: 48px;
  }
  .city-section p {
    font-size: 16px;
  }
}

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

.city-card:hover img {
  transform: scale(1.1);
}

.city-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.4s ease;
}

.city-card:hover .city-overlay {
  transform: translateY(0);
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.city-content h3 {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.city-tag {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 5px;
}

.city-stats {
  display: flex;
  gap: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.city-stats i {
  color: var(--primary);
  margin-right: 5px;
}

.btn-explore {
  background: var(--white);
  color: var(--dark);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-explore span {
  display: none; /* Mobilde veya detayda açılabilir */
}

.btn-explore i {
  font-size: 18px;
}

.city-card:hover .btn-explore {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-45deg);
}

/* Overlay gradient for better readability */
.city-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6));
  z-index: 1;
  transition: opacity 0.4s ease;
}

/* City Details Page */
.detail-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  color: var(--white);
}

.detail-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.detail-hero .container {
  position: relative;
  z-index: 1;
}

.detail-content {
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.main-info h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.places-list {
  margin-top: 40px;
}

.place-item {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.place-item:hover {
  transform: translateX(10px);
  border-left: 5px solid var(--primary);
}

.place-icon {
  width: 50px;
  height: 50px;
  background: rgba(52, 152, 219, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer .logo {
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 25px;
  font-weight: 700;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: rotate(360deg);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {


  .hero h1 {
    font-size: 36px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Hakkımızda Section */
.about-section {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 30px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
  z-index: 2;
}

.about-experience span {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.about-experience p {
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
}

.about-text-long p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-item i {
  width: 60px;
  height: 60px;
  background: rgba(52, 152, 219, 0.1);
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-item p {
  font-size: 15px;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .about-content {
    text-align: center;
  }
  .feature-item {
    text-align: left;
  }
}

/* Stats Premium */
.stats-premium {
  padding: 80px 0;
  background: var(--dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 15px;
}

.stat-info h3 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-info p {
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.testimonials-section h2 {
  color: var(--dark) !important;
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
  background: #f8f9fa !important; /* Temiz ve aydınlık arka plan */
  color: var(--dark);
  position: relative;
}

.testimonial-card {
  background: var(--white) !important;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  display: flex;
  flex-direction: column; /* İçeriği dikey dizer */
  height: 100%; /* Kartların boyunu eşitler */
}

.testimonial-card p {
  color: #1a1a1a !important;
  font-size: 17px;
  font-style: italic;
  line-height: 1.8;
  margin-top: 10px;
  margin-bottom: 15px;
  flex-grow: 1; /* Metin ne kadar kısa olursa olsun alanı doldurup alt kısmı aşağı iter */
}

.testimonial-user {
  display: flex;
  align-items: center; /* Resim ve isimleri jilet gibi hizalar */
  gap: 15px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.user-avatar {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  position: relative; /* Tikin resme mühürlenmesi için */
}

.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--white);
  color: #2ecc71;
  font-size: 11px; /* Daha kibar bir boyut */
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.user-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.user-info h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
  color: #000 !important; /* İsimler tam siyah */
}

.user-info span {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

/* Blog Section - Minimalist White Gallery */
.blog-section {
  padding: 120px 0;
  background: #ffffff !important;
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #ffffff !important;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.blog-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffffff;
  color: var(--dark);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.blog-meta span {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark) !important;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
  color: var(--primary) !important;
}

.blog-content p {
  font-size: 15px;
  color: #666 !important;
  line-height: 1.7;
  margin-bottom: 25px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f5f5f5;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author span {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* FAQ Section - Minimalist Single Column */
.faq-section {
  padding: 50px 0;
  background: #f8f9fa !important;
  position: relative;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 850px; /* Tek sütunda ideal okuma genişliği */
  margin: 0 auto;
}

.faq-item {
  background: #ffffff !important;
  border: 1px solid #f0f0f0;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.faq-question {
  padding: 28px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
}

.faq-question h3 {
  font-size: 17px;
  font-weight: 700;
  color: #000 !important; /* Sorular tam siyah */
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: #f8f9fa;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.faq-answer {
  padding: 0 35px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  padding-bottom: 30px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 15px;
  color: #000 !important; /* Cevaplar tam siyah */
  line-height: 1.8;
  opacity: 0.9;
}

/* Newsletter */
.newsletter-section {
  padding: 50px 0;
  background: var(--white);
}

.newsletter-card {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  border-radius: 40px;
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Success Animation Layer (Expanding Bubble) */
.newsletter-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #2ecc71;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.8s ease,
    height 0.8s ease;
  z-index: 1;
}

.newsletter-card.success-state::after {
  width: 150%;
  height: 300%;
}

.newsletter-card.success-state .newsletter-content {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.success-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  width: 100%;
}

.newsletter-card.success-state .success-message {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.success-message i {
  font-size: 60px;
  margin-bottom: 20px;
  display: block;
}

.success-message h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.newsletter-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.newsletter-content h2 span {
  color: var(--primary);
}

.newsletter-content p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 20px;
  color: var(--white);
  font-size: 16px;
  outline: none;
}

.newsletter-form button {
  padding: 15px 40px;
  border-radius: 15px;
}

.privacy-note {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1200px) {
  .stats-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .stats-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-card {
    padding: 50px 20px;
  }
}

/* Glass Card Spotlight Glow */
.glass-card {
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover::before {
  opacity: 1;
}

/* Fix for existing cards brightness */
.testimonial-card,
.blog-card,
.faq-item {
  border-radius: 25px !important;
}

.section-title h2 span {
  color: var(--primary);
}

.section-tag {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title span {
  letter-spacing: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Testimonial Watermark Quote */
.quote-icon {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 180px;
  color: var(--primary);
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
  font-family: serif;
  transform: rotate(-10deg);
}
