:root {
  --primary-color: #c99e45;  /* Altın/altın sarısı renk */
  --primary-dark: #b28a30;
  --primary-light: #e3bc6f;
  --secondary-color: #1a1a1a;  /* Koyu siyah */
  --secondary-light: #2a2a2a;
  --text-color: #5a5a5a;
  --light-text: #ffffff;
  --dark-text: #1a1a1a;
  --bg-color: #ffffff;
  --light-bg: #f9f9f9;
  --grey-bg: #f2f2f2;
  --dark-bg: #1a1a1a;
  --border-color: #e6e6e6;
  --success-color: #38a169;
  --danger-color: #e53e3e;
  --warning-color: #ed8936;
  --info-color: #3182ce;
  --whatsapp-color: #25D366;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --border-radius: 0;  /* Köşeleri keskin, modern görünüm */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  font-size: 15px;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--dark-text);
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 30px;
}

p {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Common Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 100px 0;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-text);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.btn-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--light-text);
  transition: width 0.5s ease;
  z-index: -1;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--light-text);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-color: var(--primary-color);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: var(--light-text);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
}

.btn-call {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.btn-call:hover {
  background-color: var(--secondary-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.text-left {
  text-align: left;
}

.section-header span {
  display: block;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.section-header h2 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--primary-color);
}

.section-header.text-left h2:after {
  left: 0;
  transform: none;
}

/* Top Bar */
.top-bar {
  background-color: var(--secondary-color);
  padding: 12px 0;
  color: var(--light-text);
  font-size: 14px;
}

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

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info a {
  color: var(--light-text);
  opacity: 0.8;
}

.contact-info a:hover {
  opacity: 1;
  color: var(--primary-color);
}

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

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

.social-links a {
  color: var(--light-text);
  opacity: 0.8;
}

.social-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Header Styles */
header {
  position: absolute;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
  padding: 15px 0;
  z-index: 1000; /* Mobil menüden daha yüksek z-index */
  transition: transform 0.5s ease;
}

header.sticky.slide-down {
  animation: slideDown 0.5s ease forwards;
}

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

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

.logo h1 {
  font-size: 36px;
  margin: 0;
  color: var(--light-text);
  font-weight: 300;
  letter-spacing: 1.5px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.logo h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.logo a:hover h1::after {
  width: 100%;
}

.logo span {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  position: relative;
}

.logo span::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 6px;
  right: -8px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  position: relative;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .nav-menu {
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
}

.nav-menu a {
  color: var(--light-text);
  font-weight: 600;
  padding: 8px 4px;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a i {
  font-size: 12px;
  margin-left: 5px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: var(--secondary-color);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 10px 20px;
  display: block;
  font-weight: 500;
  color: var(--light-text);
  text-transform: uppercase;
  font-size: 13px;
}

.dropdown-menu a:hover {
  background-color: var(--secondary-light);
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--light-text);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
  top: 0;
}

.mobile-menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-btn span:nth-child(3) {
  bottom: 0;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

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

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeIn 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  position: absolute;
  bottom: 80px;
  left: 60px;
  background-color: rgba(26, 26, 26, 0.85);
  padding: 30px;
  z-index: 3;
  border-left: 4px solid var(--primary-color);
}

.hero-stats-number {
  font-size: 68px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  font-family: 'Cormorant', serif;
}

.hero-stats-text {
  font-size: 16px;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content .tagline {
  font-size: 58px;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 10px;
  line-height: 1.2;
  font-family: 'Cormorant', serif;
}

.hero-content .highlight {
  display: block;
  color: var(--primary-color);
  font-size: 58px;
  margin-bottom: 30px;
  font-family: 'Cormorant', serif;
}

.hero-content p {
  font-size: 18px;
  color: #c0c0c0;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn-outline {
  background-color: transparent;
  color: var(--light-text);
  border: 2px solid var(--light-text);
  transition: all 0.3s ease;
}

.hero-buttons .btn-outline:hover {
  background-color: var(--light-text);
  color: var(--dark-text);
}

.hero-stats-badges {
  display: flex;
  margin-top: 40px;
  gap: 30px;
}

.hero-cases {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-cases-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
  border: 2px solid rgba(201, 158, 69, 0.3);
  border-radius: 50%;
}

.hero-cases-text {
  font-size: 16px;
  color: var(--light-text);
}

.hero-cases-number {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
}

.hero-social {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-social a {
  color: var(--light-text);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hero-social a:hover {
  opacity: 1;
  color: var(--primary-color);
  transform: translateY(-5px);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down a {
  color: var(--light-text);
  font-size: 20px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Expertise Section */
.expertise {
  background-color: var(--bg-color);
  position: relative;
  padding: 120px 0;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.7;
}

.expertise-tabs {
  margin-bottom: 50px;
}

.expertise-tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  border-color: var(--primary-color);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.expertise-card {
  background-color: var(--light-bg);
  padding: 40px 30px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-bottom: 3px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.expertise-card.modern-card {
  text-align: left;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-bottom: 3px solid transparent;
}

.expertise-card:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.expertise-icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.1);
}

.expertise-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.expertise-card.modern-card h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.expertise-card p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.expertise-features {
  margin-bottom: 25px;
  list-style: none;
  padding: 0;
}

.expertise-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}

.expertise-features i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 12px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: auto;
  padding-top: 15px;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

.expertise-cta {
  text-align: center;
  margin-top: 30px;
}

.expertise-numbers {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
  background-color: var(--dark-bg);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.number-item {
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 180px;
}

.number-count {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: 'Cormorant', serif;
}

.number-text {
  color: var(--light-text);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .expertise-tabs {
    overflow-x: auto;
  }

  .expertise-tab-buttons {
    width: max-content;
    min-width: 100%;
  }

  .expertise-numbers {
    padding: 20px;
  }

  .number-item {
    padding: 15px;
    min-width: 130px;
  }

  .number-count {
    font-size: 36px;
  }

  .number-text {
    font-size: 14px;
  }
}

/* Why Us Section */
.why-us {
  background-color: var(--light-bg);
  position: relative;
}

.why-us-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.why-us-image {
  position: relative;
}

.why-us-image:before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primary-color);
  z-index: 0;
}

.why-us-image img {
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-us-text p {
  margin-bottom: 30px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item p {
  margin-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* Team Preview Section */
.team-preview {
  background-color: var(--bg-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.team-card {
  background-color: var(--light-bg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 420px; /* Sabit yükseklik tanımlayarak görüntünün tam görünmesini sağlama */
}

.team-image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s ease;
  object-fit: cover; /* Görüntüyü kırpmadan tam sığdırma */
  object-position: center top; /* Görüntünün üst kısmını önceliklendirme */
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0;
  background-color: rgba(37, 35, 41, 0.8);
  transition: all 0.3s ease;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 14px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--light-text);
  color: var(--primary-color);
}

.team-info {
  padding: 25px 20px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.team-card:hover .team-info {
  border-bottom: 3px solid var(--primary-color);
}

.team-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-info .position {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team-cta {
  text-align: center;
}

/* Blog Preview Section */
.blog-preview {
  background-color: var(--light-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  background-color: var(--bg-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--primary-color);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}```
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--light-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-date .day {
  font-family: 'Cormorant', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.blog-date .month {
  font-size: 12px;
  text-transform: uppercase;
}

.blog-content {
  padding: 30px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.blog-content h3 a {
  color: var(--dark-text);
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-color);
}

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

.blog-content p {
  margin-bottom: 20px;
  font-size: 14px;
}

.blog-cta {
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(rgba(37, 35, 41, 0.9), rgba(37, 35, 41, 0.9)), url('https://images.unsplash.com/photo-1585842378054-ee2e52f94ba2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  color: var(--light-text);
}

.testimonials .section-header h2 {
  color: var(--light-text);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: fadeOut 0.3s ease forwards;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.prev-testimonial,
.next-testimonial {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
  background: var(--primary-color);
  color: var(--light-text);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active,
.testimonial-dots .dot:hover {
  background-color: var(--primary-color);
}

.testimonial-content {
  position: relative;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  border-bottom: 3px solid var(--primary-color);
}

.testimonial-quote {
  color: var(--primary-color);
  font-size: 40px;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--light-text);
  margin-bottom: 5px;
  font-size: 18px;
}

.author-info span {
  color: var(--primary-color);
  font-size: 14px;
}

/* Contact CTA Section */
.contact-cta {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.contact-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  color: var(--light-text);
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-text p {
  color: var(--light-text);
  opacity: 0.9;
  margin-bottom: 0;
  font-size: 16px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

/* Footer */
.footer-top {
  background-color: var(--secondary-color);
  padding: 80px 0 50px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-widgets {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo h2 {
  font-size: 32px;
  color: var(--light-text);
  margin-bottom: 20px;
}

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

.footer-widget p {
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
}

.footer-widget h3 {
  color: var(--light-text);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links a {
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

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

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--whatsapp-color);
  color: var(--light-text);
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-button a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-button a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--whatsapp-color);
  opacity: 0.4;
  animation: pulse 2s infinite;
  z-index: -1;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #333;
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

.whatsapp-button a:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

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

/* Back to Top Button*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(37, 35, 41, 0.85), rgba(37, 35, 41, 0.85)), url('https://images.unsplash.com/photo-1589391886645-d51941baf7fb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  padding: 150px 0 80px;
  text-align: center;
  color: var(--light-text);
}

.page-header h1 {
  color: var(--light-text);
  margin-bottom: 20px;
  font-size: 48px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb li {
  position: relative;
}

.breadcrumb li:not(:last-child):after {
  content: '/';
  margin-left: 10px;
  color: var(--primary-color);
}

.breadcrumb a {
  color: var(--light-text);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb .active {
  color: var(--primary-color);
}

/* About Section */
.about-section {
  background-color: var(--bg-color);
}

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

/* Mission Vision Section */
.mission-vision {
  background-color: var(--light-bg);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-box, .vision-box {
  background-color: var(--bg-color);
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.mission-icon, .vision-icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

/* Values Section */
.values {
  background-color: var(--bg-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--light-bg);
  padding: 40px 30px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--primary-color);
  background-color: var(--bg-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

/* Achievements Section */
.achievements {
  background-color: var(--light-bg);
}

.achievements-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.achievements-timeline {
  position: relative;
}

.achievements-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 50%;
}

.timeline-item:nth-child(even) {
  padding-left: 0;
  padding-right: 50%;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 4px solid var(--light-bg);
}

.timeline-content {
  background-color: var(--bg-color);
  padding: 30px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content:before {
  content: '';
  position: absolute;
  top: 10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--bg-color);
  transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content:before {
  content: '';
  position: absolute;
  top: 10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--bg-color);
  transform: rotate(45deg);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-color);
}

/* Form doğrulama stilleri */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  background-color: var(--light-bg);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 158, 69, 0.2);
}

.form-control.error {
  border-color: var(--danger-color);
}

.error-message {
  color: var(--danger-color);
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.form-control.error + .error-message {
  display: block;
}

.contact-form .btn {
  width: 100%;
  padding: 15px;
}

.contact-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.contact-intro-text {
  font-size: 18px;
  line-height: 1.8;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.contact-card {
  background-color: var(--light-bg);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--primary-color);
  background-color: var(--bg-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.contact-card h3 {
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 25px;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.location-card {
  background-color: var(--light-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.location-image {
  height: 250px;
  overflow: hidden;
}

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

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

.location-details {
  padding: 30px;
}

.location-details h3 {
  margin-bottom: 20px;
}

.location-details p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.location-details i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
}

/* Map Section */
.map-section {
  padding: 0;
  filter: grayscale(100%);
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-color);
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  border-left: 3px solid var(--primary-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 18px;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: var(--primary-color);
}

.faq-toggle {
  color: var(--primary-color);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  height: auto;
  opacity: 1;
}

/* SSS Ana Sayfa Stilleri */
.faq-main-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
}

.faq-cat-btn {
  background-color: transparent;
  border: 1px solid var(--border-color);
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  border-radius: 5px;
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background-color: var(--primary-color);
  color: var(--light-text);
  border-color: var(--primary-color);
}

.faq-category {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.faq-category.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-color);
}

/* Hizmetler Sayfası Stilleri */
.services-intro {
  background-color: var(--bg-color);
}

.services-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.services-grid-section {
  background-color: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background-color: var(--bg-color);
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  border-bottom: 3px solid transparent;
  position: relative; /* Modal açma butonunu konumlandırmak için */
}

.service-card:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--primary-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 60px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.service-card p {
  margin-bottom: 25px;
}

.service-features {
  margin-bottom: 30px;
  text-align: left;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}

.service-features i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 14px;
}

.methodology {
  background-color: var(--bg-color);
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.step-card {
  background-color: var(--light-bg);
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-family: 'Cormorant', serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 20px;
}

.step-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.legal-packages {
  background-color: var(--light-bg);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.package-card {
  background-color: var(--bg-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.03);
}

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

.package-header {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 30px;
  text-align: center;
}

.package-header h3 {
  margin-bottom: 10px;
  color: var(--light-text);
}

.packageprice {
  color: var(--primary-color);
  font-weight: 600;
}

.package-features {
  padding: 30px;
}

.package-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
}

.package-features i {
  margin-right: 10px;
  font-size: 14px;
}

.package-features i.fa-check {
  color: var(--primary-color);
}

.package-features i.fa-times {
  color: var(--text-color);
  opacity: 0.5;
}

.package-card .btn {
  display: block;
  margin: 0 30px 30px;
  text-align: center;
}

/* Partner Logolar Bölümü Stilleri */
.partner-logos {
  padding: 80px 0;
  background-color: var(--bg-color);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-logos h5 {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.header-underline {
  width: 80px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 0 auto;
}

.logo-carousel {
  margin-top: 40px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.logo-item-improved {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 100px;
  width: 280px;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.logo-item-improved:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.logo-item-improved img {
  max-width: 80px;
  max-height: 70px;
  margin-right: 15px;
  object-fit: contain;
}

.logo-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-text);
  text-align: left;
}

.partner-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* Ekip Sayfası Stilleri */
.team-intro {
  background-color: var(--bg-color);
}

.team-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.founding-partners {
  background-color: var(--light-bg);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(700px, 1fr));
  gap: 50px;
}

.partner-card {
  background-color: var(--bg-color);
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.partner-image {
  flex: 0 0 300px;
  overflow: hidden;
}

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

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

.partner-info {
  flex: 1;
  padding: 40px;
}

.partner-info h3 {
  margin-bottom: 5px;
}

.partner-info .position {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.partner-bio {
  margin-bottom: 20px;
}

.partner-bio p {
  margin-bottom: 15px;
}

.partner-expertise, .partner-education {
  margin-bottom: 20px;
}

.partner-expertise h4, .partner-education h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.partner-expertise ul, .partner-education ul {
  padding-left: 20px;
}

.partner-expertise ul li, .partner-education ul li {
  margin-bottom: 5px;
  list-style: disc;
}

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

.partner-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-bg);
  color: var(--dark-text);
  transition: all 0.3s ease;
}

.partner-social a:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.team-members {
  background-color: var(--bg-color);
}

.team-culture {
  background-color: var(--light-bg);
}

.culture-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.culture-image img {
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.culture-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.culture-value h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.careers {
  background-color: var(--bg-color);
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.careers-text {
  margin-bottom: 30px;
}

.careers-text p {
  margin-bottom: 20px;
}

.careers-positions h3 {
  margin-bottom: 25px;
}

.position-card {
  background-color: var(--light-bg);
  padding: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.position-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.position-card h4 {
  margin-bottom: 15px;
  font-size: 20px;
}

.position-card p {
  margin-bottom: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 40px;
  }
  .hero-content h1 {
    font-size: 50px;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 991px) {
  section {
    padding: 80px 0;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 36px;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .why-us-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-social {
    left: 20px;
  }
  .contact-cta-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .location-cards {
    grid-template-columns: 1fr;
  }
  .achievements-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-item {
    padding-left: 0;
    padding-right: 0;
    padding-left: 40px;
  }
  .timeline-item:nth-child(even) {
    padding-right: 0;
    padding-left: 40px;
  }
  .achievements-timeline:before {
    left: 20px;
  }
  .timeline-dot {
    left: 20px;
  }
  .timeline-item:nth-child(odd) .timeline-content:before,
  .timeline-item:nth-child(even) .timeline-content:before {
    left: -10px;
    right: auto;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    z-index: 1010;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--secondary-color);
    flex-direction: column;
    padding: 100px 30px 30px;
    transition: all 0.3s ease;
    z-index: 1005;
    overflow-y: auto;
  }
  .nav-menu.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  }
  .nav-menu::before {
    content: '×';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 1010;
  }
  .nav-menu li {
    margin: 0 0 20px;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent;
    padding: 10px 0 0 20px;
    display: none;
    box-shadow: none;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }
  .dropdown-menu a {
    padding: 10px 0;
  }
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }
  .hero-social {
    display: none;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-widgets {
    grid-template-columns: 1fr;
  }

  /* Hero alanı iyileştirmeleri */
  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-image {
    display: none;
  }

  .hero-content {
    padding: 60px 30px;
  }

  /* Expertise cards tam genişlik */
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  /* WhatsApp butonu daha görünür */
  .whatsapp-button a {
    width: 55px;
    height: 55px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  section {
    padding: 60px 0;
  }

  /* Hero alanı düzenlemeleri */
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content .tagline, 
  .hero-content .highlight {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Butonlar ve iletişim için düzenlemeler */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  /* Kart ve içerik düzenlemeleri */
  .blog-card, .service-card, .team-card {
    margin-bottom: 25px;
  }
  .expertise-card {
    padding: 25px 15px;
  }
  .service-features li,
  .expertise-features li {
    margin-bottom: 8px;
    font-size: 14px;
  }

  /* Takım sayfası düzenlemeleri */
  .team-image {
    height: 350px;
  }
  .team-info {
    padding: 20px 15px;
  }

  /* Müvekkil yorumları düzenlemeleri */
  .testimonial-content {
    padding: 25px 15px;
  }
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-content p {
    font-size: 16px;
  }

  /* Footer düzenlemeleri */
  .footer-widget {
    padding: 0 15px;
    margin-bottom: 20px;
  }
  .footer-contact li {
    font-size: 14px;
  }

  /* Sabit butonların düzenlenmesi */
  .whatsapp-button {
    bottom: 20px;
    right: 20px;
  }
  .back-to-top {
    bottom: 20px;
    right: 90px;
    width: 40px;
    height: 40px;
  }

  /* Modal ve açılır menüler için düzenlemeler */
  .modal h2 {
    font-size: 24px;
    padding-right: 25px;
  }
  .modal h3 {
    font-size: 18px;
    margin: 20px 0 10px;
  }
  .modal p,
  .modal li {
    font-size: 14px;
    line-height: 1.6;
  }

  /* İletişim sayfası */
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-card {
    padding: 30px 20px;
  }

  /* FAQ Bölümü */
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-answer p {
    font-size: 14px;
    line-height: 1.6;
  }
}

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

.fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

/* Sayfa Yükleme İndikatörü */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.active {
  opacity: 1;
  visibility: visible;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

.loader-text {
  color: var(--light-text);
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.loader-logo {
  font-family: 'Cormorant', serif;
  color: var(--light-text);
  font-size: 28px;
  margin-bottom: 30px;
}

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

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

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--light-text);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Çerez Bildirimi */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 420px;
  z-index: 9999;
  opacity: 0;
  display: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(-50%) translateY(20px);
}

.cookie-notice.active {
  opacity: 1;
  display: block;
  transform: translateX(-50%) translateY(0);
}

.cookie-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: var(--dark-text);
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close-btn:hover {
  color: var(--primary-color);
}

.cookie-notice .container {
  padding: 0;
  width: 100%;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.cookie-text {
  color: var(--dark-text);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.accept-cookies {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.reject-cookies {
  background-color: var(--light-bg);
  color: var(--dark-text);
  border: 1px solid var(--border-color);
}

.accept-cookies:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.reject-cookies:hover {
  background-color: var(--grey-bg);
  transform: translateY(-2px);
}

/* Modern Modal Stilleri */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  backdrop-filter: blur(8px);
}

.modal.active {
  opacity: 1;
}

.modal-content {
  background-color: var(--bg-color);
  margin: 50px auto;
  padding: 40px;
  border-radius: 12px;
  width: 85%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(-50px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  border-left: 4px solid var(--primary-color);
}

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

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-bg);
  color: var(--dark-text);
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  border: none;
}

.close-btn:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: rotate(90deg);
  box-shadow: 0 5px 15px rgba(201, 158, 69, 0.3);
}

.modal h2 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 32px;
  color: var(--dark-text);
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
  padding-right: 40px;
  position: relative;
}

.modal h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
}

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

.modal h3 {
  margin: 30px 0 15px;
  color: var(--primary-color);
  font-size: 24px;
  position: relative;
  padding-left: 15px;
}

.modal h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.modal ul {
  margin-left: 20px;
  margin-bottom: 25px;
  padding-left: 0;
}

.modal li {
  margin-bottom: 12px;
  line-height: 1.6;
  padding-left: 5px;
  position: relative;
}

.modal li strong {
  color: var(--dark-text);
  font-weight: 600;
}

.modal-section {
  margin-bottom: 35px;
  animation: fadeInUp 0.6s both;
  animation-delay: calc(var(--section-index, 0) * 0.1s);
}

.modal-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
  animation: scaleIn 0.5s both;
}

.modal-image {
  width: 100%;
  border-radius: 10px;
  margin: 25px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.modal-image:hover {
  transform: scale(1.02);
}

body.modal-open {
  overflow: hidden;
  /* position ve top değerleri JavaScript'te ayarlanacak */
  /* width: 100%; */
  /* height: 100%; */
}

/* Modal animations */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal media queries */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 30px 20px;
    margin: 20px auto;
    max-height: 90vh;
  }

  .close-btn {
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
  }

  .modal h2 {
    font-size: 26px;
    padding-right: 30px;
  }

  .modal h3 {
    font-size: 20px;
  }
}