/* 
   Yonca Yiğit - Uzman Çocuk Gelişimci & Aile Danışmanı
   Web Sitesi CSS Tasarım Sistemi
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Pinyon+Script&display=swap');

:root {
  /* Renk Paleti */
  --primary-teal: #0a3d42;
  --primary-teal-dark: #052629;
  --primary-teal-light: #e7eff0;
  --primary-teal-rgb: 10, 61, 66;
  
  --accent-gold-start: #dfba6b;
  --accent-gold-end: #c59b27;
  --accent-gold-light: #faf5eb;
  --accent-gold-rgb: 197, 155, 39;
  
  --bg-cream: #fbfaf7;
  --bg-cream-dark: #f5f2ea;
  --bg-card: #ffffff;
  
  --text-main: #1f3436;
  --text-muted: #5e6f71;
  --text-white: #ffffff;
  
  /* Font Aileleri */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-script: 'Pinyon Script', cursive;
  
  /* Gölgeler ve Köşeler */
  --shadow-sm: 0 4px 6px -1px rgba(10, 61, 66, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(10, 61, 66, 0.08), 0 4px 6px -2px rgba(10, 61, 66, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(10, 61, 66, 0.12), 0 10px 10px -5px rgba(10, 61, 66, 0.06);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Geçişler */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* Sıfırlamalar ve Temel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Scrollbar Özelleştirme */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-teal);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-teal-dark);
}

/* Dekoratif Altın Çizgi / Bölücü */
.divider-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
}
.divider-gold::before, .divider-gold::after {
  content: '';
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--accent-gold-end), transparent);
}
.divider-gold span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold-end);
  transform: rotate(45deg);
}

/* Buton Tasarımları */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold-start) 0%, var(--accent-gold-end) 100%);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 155, 39, 0.3);
  filter: brightness(1.05);
}
.btn-gold:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-teal);
  border: 2px solid var(--primary-teal);
}
.btn-outline:hover {
  background-color: var(--primary-teal);
  color: var(--text-white);
  transform: translateY(-3px);
}

.btn-book-header {
  background: transparent;
  color: var(--accent-gold-end);
  border: 2px solid var(--accent-gold-end);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-book-header:hover {
  background-color: var(--accent-gold-end);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(197, 155, 39, 0.2);
}

.btn-teal {
  background-color: var(--primary-teal);
  color: var(--text-white);
}
.btn-teal:hover {
  background-color: var(--primary-teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(10, 61, 66, 0.2);
}

/* Saydam Üst Bar (Header) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  transition: var(--transition-smooth);
  background-color: transparent;
}

header.scrolled {
  background-color: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-sm);
  padding: 12px 5%;
  border-bottom: 1px solid rgba(10, 61, 66, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Monogram Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}
.logo:hover .logo-img {
  transform: scale(1.05) rotate(-3deg);
}
.footer-logo-img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-teal);
  letter-spacing: 1px;
}
.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent-gold-end);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Navigasyon Linkleri */
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 4px;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold-start), var(--accent-gold-end));
  transition: var(--transition-smooth);
}

nav ul li a:hover {
  color: var(--primary-teal);
}

nav ul li a:hover::after,
nav ul li.active a::after {
  width: 100%;
}

nav ul li.active a {
  color: var(--primary-teal);
  font-weight: 600;
}

/* Mobil Hamburger Menü */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}
.hamburger span {
  height: 2px;
  width: 100%;
  background-color: var(--primary-teal);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Sayfa Bölümleri ve Geçiş Alanı */
main {
  position: relative;
  min-height: calc(100vh - 120px);
}

.page-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 90vh;
  scroll-margin-top: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.page-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section (Ana Sayfa) */
/* Hero Section (Ana Sayfa) */
#home-section {
  position: relative;
  min-height: 100vh;
  display: flex !important;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: none;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin-left: 5%;
  margin-right: auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 3.8rem;
  color: var(--primary-teal);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 400;
}

.hero-content h1 span {
  font-family: var(--font-script);
  color: var(--accent-gold-end);
  font-size: 4rem;
  display: block;
  margin-top: -10px;
  font-weight: normal;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.hero-image-area {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}

/* Beautiful fading gradient from right (transparent) to left (solid cream background) */
.hero-image-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-cream) 0%, rgba(251, 250, 247, 0.8) 25%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.hero-image-frame {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Hakkımda Bölümü */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent-gold-end);
  font-style: italic;
  margin-bottom: 5px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary-teal);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1.2;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--primary-teal);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.about-badge-item {
  background-color: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-gold-end);
  transition: var(--transition-smooth);
}
.about-badge-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about-badge-item h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--primary-teal);
  margin-bottom: 5px;
  font-weight: 600;
}
.about-badge-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

.about-photo-area {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Altın Daire ve Çerçeve Motifli Profil Resmi */
.profile-image-container {
  position: relative;
  width: 320px;
  height: 320px;
  margin-bottom: 25px;
}

.profile-gold-ring {
  display: none;
}

.profile-image-frame {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: none;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(10, 61, 66, 0.08);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.profile-quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  text-align: center;
  color: var(--primary-teal);
  max-width: 280px;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hizmetler Bölümü (Showcase) */
.services-showcase {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 61, 66, 0.02);
  transition: var(--transition-smooth);
}

.service-row:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 155, 39, 0.15);
}

.service-row.row-reverse {
  flex-direction: row-reverse;
}

.service-media {
  flex: 0.9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 4px solid var(--bg-cream);
}

.service-img-showcase {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-row:hover .service-img-showcase {
  transform: scale(1.02);
}

.service-info {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-info h3 {
  font-size: 2rem;
  color: var(--primary-teal);
  position: relative;
  padding-bottom: 8px;
}

.service-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold-start), var(--accent-gold-end));
}

.service-info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* Online Atölyeler Bölümü */
.workshops-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.workshops-featured {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.workshops-featured::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.workshop-featured-img {
  flex: 0.8;
  max-width: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.workshop-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

.workshop-featured-content {
  flex: 1.2;
}

.workshop-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--accent-gold-start), var(--accent-gold-end));
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.workshop-featured-content h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.workshop-featured-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.workshop-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
}

.workshop-meta-item {
  display: flex;
  flex-direction: column;
}

.workshop-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.workshop-meta-val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-gold-start);
}

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

.workshop-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 61, 66, 0.02);
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.workshop-card h4 {
  font-size: 1.4rem;
  color: var(--primary-teal);
  margin: 15px 0 10px 0;
}

.workshop-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.workshop-card-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--primary-teal-light);
  padding-top: 15px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.workshop-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Kitabım Bölümü (Placeholder) */
.book-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-md);
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.book-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent-gold-light) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.book-mockup-area {
  flex: 0.8;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

/* Altın & Koyu Teal Kapak Tasarımlı 3D Kitap Silüeti */
.book-3d {
  width: 240px;
  height: 340px;
  position: relative;
  transform: rotateY(-20deg);
  transform-style: preserve-3d;
  box-shadow: 15px 15px 30px rgba(10, 61, 66, 0.15);
  border-radius: 4px 16px 16px 4px;
  transition: var(--transition-smooth);
}

.book-3d:hover {
  transform: rotateY(-10deg) translateY(-8px);
  box-shadow: 20px 25px 35px rgba(10, 61, 66, 0.2);
}

.book-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  border-radius: 4px 16px 16px 4px;
  border-right: 6px solid var(--accent-gold-end);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 25px;
  color: var(--text-white);
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  backface-visibility: hidden;
  z-index: 2;
}

.book-cover-logo {
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

.book-cover-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: var(--accent-gold-start);
  line-height: 1.3;
}

.book-cover-author {
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.book-spine {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background-color: var(--primary-teal-dark);
  transform: rotateY(-90deg);
  transform-origin: left;
  z-index: 1;
}

.book-pages {
  position: absolute;
  top: 5px;
  left: 15px;
  width: 220px;
  height: 330px;
  background: #fcfcfc;
  border-radius: 0 12px 12px 0;
  box-shadow: inset 0 0 5px #ccc;
  transform: translateZ(-20px);
  z-index: 0;
  border-right: 1px solid #ddd;
}

.book-info-area {
  flex: 1.2;
}

.book-coming-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-end);
  border: 1px dashed var(--accent-gold-end);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.book-info-area h3 {
  font-size: 2.5rem;
  color: var(--primary-teal);
  margin-bottom: 20px;
}

.book-info-area p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 25px;
}

/* İletişim & Randevu Bölümü */
.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-teal);
}

.contact-card h3 {
  font-size: 1.5rem;
  color: var(--primary-teal);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  flex-shrink: 0;
}

.contact-item-details h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item-details p {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--primary-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary-teal);
  color: var(--text-white);
  transform: translateY(-3px);
}

.contact-form-area {
  flex: 1.2;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 61, 66, 0.03);
}

.contact-form-area h3 {
  font-size: 2rem;
  color: var(--primary-teal);
  margin-bottom: 10px;
}

.contact-form-area p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Form Elemanları */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--primary-teal-light);
  background-color: #fafbfb;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold-end);
  background-color: var(--text-white);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a3d42' 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 18px center;
  background-size: 16px;
  padding-right: 45px;
}

textarea.form-control {
  resize: vertical;
}

/* Lüks Footer */
footer {
  background-color: var(--primary-teal-dark);
  color: var(--text-white);
  padding: 80px 5% 40px 5%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
}
.footer-logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent-gold-start);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Afişteki Üçlü Değer Barı */
.footer-values-bar {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 50px auto;
  background-color: rgba(10, 61, 66, 0.4);
  border-radius: var(--radius-md);
  padding: 25px 40px;
  border: 1px solid rgba(223, 186, 107, 0.2);
  gap: 30px;
}

.footer-value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.footer-value-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(223, 186, 107, 0.2) 0%, rgba(197, 155, 39, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-start);
  font-size: 1.1rem;
}

.footer-value-text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-white);
}

.footer-middle {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--accent-gold-start);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold-end);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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

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

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.footer-links li a:hover {
  color: var(--accent-gold-start);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact-item svg {
  color: var(--accent-gold-start);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* İnteraktif Modallar */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 38, 41, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--bg-card);
  width: 90%;
  max-width: 550px;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--primary-teal);
  color: var(--text-white);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 2rem;
  color: var(--primary-teal);
  margin-bottom: 8px;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Bildirim Pop-up */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: -400px;
  background-color: var(--primary-teal);
  color: var(--text-white);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  border-left: 5px solid var(--accent-gold-end);
  transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  right: 30px;
}

.toast-icon {
  color: var(--accent-gold-start);
  font-size: 1.2rem;
}

/* Responsive Düzenler */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content h1 span {
    font-size: 3.2rem;
  }
  .about-container {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  header {
    padding: 15px 5%;
  }
  
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-cream);
    padding: 120px 40px 40px 40px;
    box-shadow: -5px 0 25px rgba(10, 61, 66, 0.08);
    transition: var(--transition-smooth);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(197, 155, 39, 0.15);
  }
  
  nav.open {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    font-size: 1.1rem;
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(10, 61, 66, 0.05);
  }
  
  .header-actions {
    display: none;
  }
  
  /* Mobil Nav Açıldığında hamburger simgesi animasyonu */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  #home-section {
    flex-direction: column-reverse !important;
    text-align: center;
    padding-top: 120px;
    gap: 30px;
    min-height: auto;
  }
  
  .hero-content {
    max-width: 100%;
    margin-left: 0;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-area {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
  }
  
  .hero-image-area::before {
    background: linear-gradient(to top, var(--bg-cream) 0%, transparent 100%);
  }
  
  .about-container {
    flex-direction: column; /* Stacks the profile photo at the top on mobile */
    gap: 40px;
  }

  .service-row {
    flex-direction: column !important;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .service-row.row-reverse {
    flex-direction: column !important;
  }
  
  .service-media {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .service-img-showcase {
    height: 250px;
    object-fit: cover;
  }
  
  .service-info {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  
  .service-info h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-badges {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .workshops-featured {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
  
  .workshop-featured-img {
    max-width: 250px;
  }
  
  .workshop-meta-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .book-container {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-values-bar {
    flex-direction: column;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-content h1 span {
    font-size: 2.6rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: 100%;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* Dedicated Book Page Styles */
.book-page-section {
  padding: 140px 5% 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 140px);
}

.book-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 20px;
}

.book-page-image-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: floatBook 6s ease-in-out infinite, fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.book-page-image-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: 0;
  overflow: visible;
  border: none;
  filter: drop-shadow(15px 25px 35px rgba(10, 61, 66, 0.25));
  transition: var(--transition-smooth);
}

.book-page-image-frame:hover {
  transform: scale(1.03) rotate(1deg);
  filter: drop-shadow(20px 30px 45px rgba(10, 61, 66, 0.35));
}

.book-page-img {
  width: 100%;
  height: auto;
  display: block;
}

.book-page-content-area {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.2s;
}

.book-page-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-end);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-page-title {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 10px;
  line-height: 1.15;
}

.book-page-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.4;
  border-bottom: 1px solid var(--primary-teal-light);
  padding-bottom: 20px;
}

.book-page-author {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-gold-end);
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.book-page-author::before {
  content: '';
  width: 25px;
  height: 1px;
  background-color: var(--accent-gold-end);
}

.book-page-description {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.book-page-description p {
  margin-bottom: 20px;
}

.book-page-description p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3rem;
  float: left;
  line-height: 1;
  padding-right: 8px;
  color: var(--primary-teal);
  font-weight: 700;
}

.book-platforms-section {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 25px;
  border: 1px solid rgba(197, 155, 39, 0.25);
  width: 100%;
  max-width: 580px;
  margin-top: 45px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.book-platforms-section:hover {
  border-color: var(--accent-gold-end);
  box-shadow: var(--shadow-md);
}

.book-platforms-section h4 {
  font-size: 1.4rem;
  color: var(--primary-teal);
  margin-bottom: 15px;
  text-align: center;
}

.book-platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background-color: var(--bg-card);
  border: 1px solid var(--accent-gold-end);
  color: var(--primary-teal);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.platform-btn:hover {
  background: linear-gradient(135deg, var(--accent-gold-start) 0%, var(--accent-gold-end) 100%);
  color: var(--text-white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(197, 155, 39, 0.2);
}

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

@keyframes floatBook {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive Book Page */
@media (max-width: 1024px) {
  .book-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .book-page-image-area {
    margin-bottom: 20px;
  }
  .book-page-title {
    font-size: 2.2rem;
    text-align: center;
  }
  .book-page-subtitle {
    text-align: center;
  }
  .book-page-author {
    justify-content: center;
  }
  .book-page-author::after {
    content: '';
    width: 25px;
    height: 1px;
    background-color: var(--accent-gold-end);
  }
  .book-platforms-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .platform-btn {
    justify-content: center;
  }
}

/* Dedicated Certificates Page Styles */
.certificates-page-section {
  padding: 140px 5% 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 140px);
}

.certificates-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.certificates-intro h1 {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 15px;
}

.certificates-intro p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.certificates-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.certificate-category-block {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.certificate-category-block:nth-child(2) {
  animation-delay: 0.15s;
}

.certificate-category-block:nth-child(3) {
  animation-delay: 0.3s;
}

.category-title {
  font-size: 1.6rem;
  color: var(--primary-teal);
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 4px solid var(--accent-gold-end);
  display: flex;
  align-items: center;
  gap: 10px;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 25px;
}

.certificate-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(10, 61, 66, 0.05);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.certificate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold-start), var(--accent-gold-end));
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: left;
}

.certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 155, 39, 0.2);
}

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

.cert-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.cert-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.certificate-card:hover .cert-icon-wrapper {
  background-color: var(--primary-teal);
  color: var(--text-white);
}

.cert-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-gold {
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-end);
}

.badge-teal {
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
}

.cert-title {
  font-size: 1.05rem;
  color: var(--primary-teal);
  font-weight: 600;
  line-height: 1.45;
  margin-top: 5px;
}

.cert-meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(10, 61, 66, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cert-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Return buttons styling */
.nav-back-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.4s;
}

/* Responsive tweaks for certificates */
@media (max-width: 768px) {
  .certificates-grid {
    grid-template-columns: 1fr;
  }
  .certificates-intro h1 {
    font-size: 2.2rem;
  }
}

/* Backdrop Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 61, 66, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Language Selector Styles */
.lang-selector {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(10, 61, 66, 0.15);
  color: var(--primary-teal);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  background-color: var(--primary-teal-light);
  border-color: var(--primary-teal);
}

.lang-btn svg {
  opacity: 0.7;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: var(--bg-card);
  border: 1px solid rgba(10, 61, 66, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 1100;
  min-width: 120px;
  padding: 6px 0;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.85rem;
}

.lang-option:hover {
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
}

.lang-option.active {
  color: var(--accent-gold-end);
  font-weight: 600;
}

/* Mobile Language Selector inside Sidebar */
.mobile-lang-selector {
  margin-top: auto; /* Push it to the bottom of the sidebar */
  padding-top: 25px;
  border-top: 1px dashed rgba(10, 61, 66, 0.08);
  display: none; /* Hide on desktop by default */
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.mobile-lang-btn {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  border: 1px solid rgba(10, 61, 66, 0.1);
  border-radius: var(--radius-sm);
  color: var(--primary-teal);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  background-color: transparent;
}

.mobile-lang-btn.active {
  background-color: var(--primary-teal);
  color: var(--text-white);
  border-color: var(--primary-teal);
}

@media (max-width: 1024px) {
  .lang-selector {
    display: none; /* Hide desktop selector on mobile */
  }
  .mobile-lang-selector {
    display: flex; /* Show mobile selectors in sidebar on mobile */
  }
}

/* --- Dropdown Menü (Desktop & Mobil) --- */
.dropdown-menu {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-list {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-card);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 61, 66, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 0;
  min-width: 250px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  margin: 0;
  list-style: none;
}

.dropdown-menu:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-list li {
  width: 100%;
}

.dropdown-list li a {
  display: block !important;
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
  color: var(--text-main) !important;
  font-weight: 500 !important;
  transition: var(--transition-fast) !important;
  border-bottom: none !important;
  text-align: left;
}

.dropdown-list li a:hover {
  background-color: rgba(10, 61, 66, 0.04);
  color: var(--primary-teal) !important;
}

.dropdown-list li a::after {
  display: none !important; /* Alt sayfa linklerinde alt çizgi efektini kaldır */
}

/* Mobil Alt Menü Uyumlaştırması */
@media (max-width: 1024px) {
  .dropdown-list {
    display: block !important;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    padding: 5px 0 5px 20px !important; /* Girintili liste */
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    min-width: auto !important;
  }
  
  .dropdown-list li a {
    font-size: 0.95rem !important;
    padding: 8px 0 !important;
    border-bottom: 1px dashed rgba(10, 61, 66, 0.03) !important;
  }
  
  .dropdown-trigger {
    border-bottom: none !important;
    font-weight: 600 !important;
  }
}
