/* Compiled CSS from SCSS */

/* Overflow Control - Prevent Horizontal Scrolling */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #2a9d8f;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Transitions */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

:root {
  --bg-primary: #0a192f;
  --bg-secondary: #1a2a3a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --accent-color: #2a9d8f;
  --cta-color: #f4a261;
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-primary: #0a192f;
  --text-secondary: #6c757d;
  --accent-color: #2a9d8f;
  --cta-color: #f4a261;
  --card-bg: rgba(0, 0, 0, 0.05);
  --border-color: rgba(0, 0, 0, 0.1);
}

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



body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  background-color: rgba(10, 25, 47, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar .navbar-brand {
  font-size: 1.5rem;
  color: #ffffff !important;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar .nav-link:hover, .navbar .nav-link.active {
  color: #2a9d8f !important;
  transform: translateY(-2px);
}

.navbar .navbar-toggler {
  border: none;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  background: #2a9d8f;
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.navbar .navbar-toggler:hover {
  background: #f4a261;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(42, 157, 143, 0.25);
}

/* Sidebar Menu Styles - Mobile Only */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0a192f;
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    z-index: 1050;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  }

  .navbar-collapse.show {
    right: 0;
  }

  .navbar-collapse .menu-wrapper {
    padding: 60px 20px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .navbar-collapse .navbar-nav {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    flex: 1;
  }

  .navbar-collapse .nav-item {
    margin: 8px 0;
  }

  .navbar-collapse .nav-link {
    font-size: 1rem;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    margin: 0;
    color: #ffffff !important;
    text-align: left;
    font-weight: 500;
  }

  .navbar-collapse .nav-link:hover {
    background: transparent;
    color: #2a9d8f !important;
  }

  .navbar-collapse .nav-link.active {
    background: #2a9d8f;
    color: #ffffff !important;
  }
}

/* Close button for sidebar - Mobile Only */
@media (max-width: 991px) {
  .navbar-collapse::before {
    content: '×';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1051;
  }

  .navbar-collapse::before:hover {
    color: #2a9d8f;
    transform: scale(1.1);
  }

  /* Overlay when sidebar is open */
  .navbar-collapse.show::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}

/* Desktop - Right aligned menu */
@media (min-width: 992px) {
  .navbar-collapse {
    justify-content: flex-end !important;
  }
  
  .navbar-collapse .menu-wrapper {
    display: flex !important;
    flex-direction: row !important;
    padding: 0 !important;
    height: auto !important;
  }
  
  .navbar-collapse .navbar-nav {
    flex-direction: row !important;
    margin-top: 0 !important;
    flex: none !important;
  }
  
  .navbar-collapse .nav-item {
    margin: 0 !important;
  }
  
  .navbar-collapse .nav-link {
    font-size: 1rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    color: #ffffff !important;
    text-align: center !important;
    font-weight: 500 !important;
  }
  
  .navbar-collapse .nav-link:hover {
    background: transparent !important;
    color: #2a9d8f !important;
  }
  
  .navbar-collapse .nav-link.active {
    background: transparent !important;
    color: #2a9d8f !important;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: #0a192f !important;
    backdrop-filter: blur(20px) !important;
    transition: right 0.3s ease !important;
    z-index: 1050 !important;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3) !important;
    display: block !important;
  }
  
  .navbar-collapse.show {
    right: 0 !important;
  }
  
  .navbar-collapse:not(.show) {
    right: -100% !important;
  }
}


.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 150px 0;
}

.hero-gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a192f 0%, #1a2a3a 50%, #2a9d8f 100%);
  z-index: 1;
  opacity: 0.7; /* Video üzerinde hafif overlay */
}

.hero-video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

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

.hero-video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.6);
  z-index: -1;
}

.hero-section .hero-title {
  font-size: 4rem;
  font-weight: 400;
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-section .hero-title .text-accent {
  color: #2a9d8f;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2.8rem;
    margin-top: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-section .hero-title {
    font-size: 2.2rem;
    margin-top: 2.5rem;
  }
}

.hero-section .hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-section .hero-buttons .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  min-width: 200px;
}

.hero-section .hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
  .hero-section .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-section .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

.hero-section .hero-image {
  position: relative;
}

.hero-section .hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-section .hero-image img:hover {
  transform: scale(1.05);
}

.services-section {
  background-color: var(--bg-secondary);
  padding: 80px 0;
}

.services-section .service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(42, 157, 143, 0.2);
  border-color: #2a9d8f;
}

.services-section .service-card .service-icon {
  width: 80px;
  height: 80px;
  background: #2a9d8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(42, 157, 143, 0.3);
}

.services-section .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.services-section .service-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.services-section .service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.stats-section {
  background: #2a9d8f;
  color: white;
  padding: 80px 0;
}

.stats-section .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: white;
}

.stats-section .stat-item .stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cta-section {
  background-color: var(--bg-primary);
  padding: 80px 0;
}

.cta-section .cta-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .cta-section .cta-title {
    font-size: 2rem;
  }
}

.cta-section .cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.footer {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

.footer .footer-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #2a9d8f;
}

.footer .footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer .footer-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.footer .footer-links li {
  margin-bottom: 0.5rem;
}

.footer .footer-links li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-links li a:hover {
  color: #2a9d8f;
}

.footer .footer-contact p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer .footer-contact p i {
  color: #2a9d8f;
}

/* iPhone telefon numarası rengi düzeltme */
.footer .footer-contact p a[href^="tel:"] {
  color: var(--text-secondary) !important;
  text-decoration: none !important;
}

.footer .footer-contact p a[href^="tel:"]:hover {
  color: #2a9d8f !important;
}

/* iOS telefon numarası otomatik algılama engelleme */
.footer .footer-contact p {
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* İletişim bölümü telefon numarası rengi */
.contact-details p {
  color: var(--text-secondary) !important;
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* İletişim Bilgileri bölümü telefon numarası */
.contact-info .contact-details p {
  color: var(--text-secondary) !important;
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none !important;
}

/* Tüm telefon numaraları için genel kural */
p:contains("0532"), p:contains("+90"), p:contains("0") {
  color: var(--text-secondary) !important;
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Phone number span */
.phone-number {
  color: var(--text-secondary) !important;
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none !important;
}

.footer .footer-divider {
  border-color: var(--border-color);
  margin: 2rem 0 1rem;
}

.footer .footer-copyright {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.btn-primary {
  background: #2a9d8f;
  border: none;
  color: white;
  font-weight: 500;
}

.btn-primary:hover {
  background: #248a7a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(42, 157, 143, 0.3);
}

.btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #0a192f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

#themeToggle {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#themeToggle:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #2a9d8f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 992px) {
  .hero-section .hero-title {
    font-size: 3rem;
  }
  
  .hero-section .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-section .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .services-section .service-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .hero-section .hero-title {
    font-size: 2rem;
  }
  
  .hero-section .hero-subtitle {
    font-size: 1rem;
  }
  
  .stats-section .stat-number {
    font-size: 2.5rem;
  }
}

.text-accent {
  color: #2a9d8f !important;
}

.text-cta {
  color: #f4a261 !important;
}

.bg-primary-custom {
  background-color: #0a192f !important;
}

.bg-accent {
  background-color: #2a9d8f !important;
}

.bg-cta {
  background-color: #f4a261 !important;
}


/* Timeline Project Styles */
.projects-section {
  background-color: var(--bg-primary);
  padding: 100px 0;
  position: relative;
  min-height: 2500px;
}

.projects-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 400px;
  bottom: 100px;
  width: 4px;
  background: linear-gradient(to bottom, #2a9d8f, #f4a261, #2a9d8f);
  transform: translateX(-50%);
  z-index: 1;
  min-height: 2000px;
}

/* Timeline çizgisinin sonuna ok işareti */
.projects-section::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #f4a261;
  transform: translateX(-50%) translateY(6px);
  z-index: 2;
}

/* Project Filter Styles */
.filter-buttons {
  margin-bottom: 60px;
}

.filter-buttons .btn {
  margin: 0 0.5rem 0.5rem 0;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.filter-buttons .btn:hover {
  background-color: var(--accent-color);
  color: white;
}

.filter-buttons .btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  min-height: 2000px;
  padding: 0;
  margin-top: 150px;
}

/* Timeline Project Items */
.timeline-item {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

/* İlk yüklemede tüm projeler görünür */
.timeline-item:not(.filtered-out) {
  display: flex !important;
}

/* Filtreleme için gizli projeler */
.timeline-item.filtered-out,
.timeline-item[style*="display: none"] {
  display: none !important;
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.timeline-item.timeline-odd {
  flex-direction: row;
}

.timeline-item.timeline-even {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  max-width: 45%;
  padding: 40px;
  background: rgba(42, 157, 143, 0.05);
  border: 1px solid rgba(42, 157, 143, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
}

.timeline-item.timeline-odd .timeline-content {
  margin-right: 60px;
}

.timeline-item.timeline-even .timeline-content {
  margin-left: 60px;
}

.timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(42, 157, 143, 0.2);
  border-color: #2a9d8f;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #2a9d8f;
  border: 4px solid var(--bg-primary);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
  animation: radarPulse 2s ease-in-out infinite;
}

.timeline-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid rgba(42, 157, 143, 0.6);
  border-radius: 50%;
  animation: radarWave 2s ease-in-out infinite;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 1px solid rgba(42, 157, 143, 0.3);
  border-radius: 50%;
  animation: radarWave 2s ease-in-out infinite 0.5s;
}

@keyframes radarPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.7);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 10px rgba(42, 157, 143, 0);
  }
}

@keyframes radarWave {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.timeline-item:hover .timeline-dot {
  background: #f4a261;
  animation: radarPulseHover 1s ease-in-out infinite;
}

.timeline-item:hover .timeline-dot::before {
  border-color: rgba(244, 162, 97, 0.8);
  animation: radarWaveHover 1s ease-in-out infinite;
}

.timeline-item:hover .timeline-dot::after {
  border-color: rgba(244, 162, 97, 0.5);
  animation: radarWaveHover 1s ease-in-out infinite 0.3s;
}

@keyframes radarPulseHover {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(244, 162, 97, 0.7);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 0 0 15px rgba(244, 162, 97, 0);
  }
}

@keyframes radarWaveHover {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.timeline-date {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2a9d8f;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
}

.timeline-item.timeline-odd .timeline-date {
  right: -80px;
}

.timeline-item.timeline-even .timeline-date {
  left: -80px;
}

/* Project image kaldırıldı */

/* Resimler kaldırıldı */

/* Logo kartları için özel stil kaldırıldı */

/* Project overlay kaldırıldı */

/* Logo hover efekti kaldırıldı */

.project-links {
  display: flex;
  gap: 1rem;
}

.project-links .btn {
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.project-links .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

/* Timeline Content Styles */
.timeline-badge {
  position: relative;
  display: inline-block;
  background: #f4a261;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.timeline-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.timeline-description {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

.timeline-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(42, 157, 143, 0.2);
}

.timeline-stats .stat {
  text-align: center;
  flex: 1;
}

.timeline-stats .stat-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #f4a261;
  margin-bottom: 0.3rem;
}

.timeline-stats .stat-label {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Tech tag stilleri kaldırıldı */

/* Project Link Stilleri */
.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.project-link:hover {
  text-decoration: none;
  color: inherit;
}

.project-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(42, 157, 143, 0.2);
}

.project-stats .stat {
  text-align: center;
  flex: 1;
}

.project-stats .stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #f4a261;
  margin-bottom: 0.2rem;
}

.project-stats .stat-label {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .projects-section::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    margin-bottom: 60px;
    padding-left: 60px;
  }
  
  .timeline-content {
    max-width: 100%;
    margin: 0 !important;
    padding: 30px;
  }
  
  .timeline-dot {
    left: 30px !important;
    transform: translate(-50%, -50%);
  }
  
  .timeline-date {
    position: static !important;
    transform: none !important;
    margin-bottom: 20px;
    display: inline-block;
  }
  
  .timeline-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .timeline-stats .stat {
    text-align: left;
  }
}

/* Testimonial Styles */
.testimonials {
  background-color: var(--bg-secondary);
  padding: 80px 0;
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-card {
  background: rgba(42, 157, 143, 0.1);
  border: 1px solid rgba(42, 157, 143, 0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(42, 157, 143, 0.2);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
  font-style: italic;
}

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

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2a9d8f;
}

.author-name {
  color: #2a9d8f;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-title {
  color: #ffffff;
  font-size: 0.9rem;
  margin: 0;
}

/* Slider Navigation */
.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  background: rgba(42, 157, 143, 0.2);
  border: 2px solid #2a9d8f;
  color: #2a9d8f;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #2a9d8f;
  color: white;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(42, 157, 143, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #2a9d8f;
}

.dot:hover {
  background: #2a9d8f;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-image {
    width: 50px;
    height: 50px;
  }
  
  .testimonial-navigation {
    gap: 1rem;
  }
  
  .testimonial-prev,
  .testimonial-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  backdrop-filter: blur(10px);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Blog Styles */

.category-buttons .btn {
  margin: 0 0.5rem 0.5rem 0;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-buttons .btn.active {
  background-color: #2a9d8f;
  border-color: #2a9d8f;
  color: white;
}

.blog-section {
  background-color: var(--bg-primary);
  padding: 80px 0;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #2a9d8f;
}

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

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

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

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.category-tag {
  background: #2a9d8f;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.blog-title {
  margin-bottom: 1rem;
}

.blog-title-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-title-link:hover {
  color: #2a9d8f;
}

.blog-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Newsletter Styles */
.newsletter {
  background: #2a9d8f;
  color: white;
  padding: 80px 0;
}

.newsletter-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: white;
}

.newsletter-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-control {
  border-radius: 25px 0 0 25px;
  border: none;
  padding: 0.75rem 1.5rem;
}

.newsletter-form .btn {
  border-radius: 0 25px 25px 0;
  padding: 0.75rem 2rem;
}

/* Contact Form Styles */
.contact-section {
  background-color: var(--bg-primary);
  padding: 80px 0;
}

.contact-form-container {
  background: #0a192f;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

/* Progress Steps */
.progress-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.step.active {
  opacity: 1;
}

.step.completed {
  opacity: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(42, 157, 143, 0.3);
  color: #2a9d8f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: #2a9d8f;
  color: white;
}

.step.completed .step-number {
  background: #f4a261;
  color: white;
}

.step-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
  display: block;
}

/* Logo Styles */
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.logo-main {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-accent {
  color: #2a9d8f;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.logo-text:hover {
  transform: scale(1.05);
  text-decoration: none;
}

/* Footer Logo */
.footer-title.logo-text {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-title .logo-main {
  color: var(--text-primary);
}

.footer-title .logo-accent {
  color: #2a9d8f;
}

/* Responsive Logo */
@media (max-width: 768px) {
  .logo-text {
    font-size: 1.3rem;
  }
  
  .footer-title.logo-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1.2rem;
  }
  
  .footer-title.logo-text {
    font-size: 1.1rem;
  }
}

/* Professional Notifications */
.alert {
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  font-weight: 500;
  animation: slideInRight 0.3s ease-out;
}

.alert-danger {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
}

.alert-success {
  background: linear-gradient(135deg, #51cf66, #40c057);
  color: white;
}

.alert-info {
  background: linear-gradient(135deg, #74c0fc, #339af0);
  color: white;
}

.alert-warning {
  background: linear-gradient(135deg, #ffd43b, #fab005);
  color: #333;
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

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

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

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

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

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a9d8f;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Service Options */
.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-option {
  position: relative;
  background: #0a192f;
  border: 2px solid rgba(42, 157, 143, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-label {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.service-option:hover {
  border-color: #2a9d8f;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(42, 157, 143, 0.2);
}

.service-checkbox:checked + .service-label .service-option,
.service-checkbox:checked ~ * {
  border-color: #2a9d8f;
  background: rgba(42, 157, 143, 0.1);
  box-shadow: 0 0 20px rgba(42, 157, 143, 0.3);
}

.service-checkbox:checked + .service-label::before {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 10px;
  background: #2a9d8f;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.service-icon {
  font-size: 2rem;
  color: #2a9d8f;
  margin-bottom: 1rem;
}

.service-option h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-option p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
}

/* Summary Card */
.summary-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(42, 157, 143, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(42, 157, 143, 0.2);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item strong {
  color: #2a9d8f;
  font-weight: 600;
}

.summary-item span {
  color: #ffffff;
}

/* Selected Services List */
.selected-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.selected-service-item {
  background: rgba(42, 157, 143, 0.2);
  border: 1px solid rgba(42, 157, 143, 0.4);
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.selected-service-item:hover {
  background: rgba(42, 157, 143, 0.3);
  border-color: #2a9d8f;
}

.remove-service-btn {
  background: #f4a261;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.remove-service-btn:hover {
  background: #e76f51;
  transform: scale(1.1);
}

/* Form Navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(42, 157, 143, 0.3);
}

.form-navigation .btn {
  background: #f4a261;
  border-color: #f4a261;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-navigation .btn:hover {
  background: #e76f51;
  border-color: #e76f51;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 162, 97, 0.3);
}

.form-navigation .btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(244, 162, 97, 0.25);
}

.form-navigation .btn-outline-secondary {
  background: transparent;
  border-color: #f4a261;
  color: #f4a261;
}

.form-navigation .btn-outline-secondary:hover {
  background: #f4a261;
  border-color: #f4a261;
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .progress-steps {
    gap: 0.5rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .step-title {
    font-size: 0.8rem;
  }
  
  .service-options {
    grid-template-columns: 1fr;
  }
  
  .form-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-navigation .btn {
    width: 100%;
  }
}

.form-title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #ffffff;
}

.form-subtitle {
  color: #ffffff;
  margin-bottom: 2rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background-color: var(--bg-secondary);
  border-color: #2a9d8f;
  color: var(--text-primary);
  box-shadow: 0 0 0 0.2rem rgba(42, 157, 143, 0.25);
}

.contact-form .form-label {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-info {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.info-title {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.info-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #2a9d8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-details h5 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.social-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #2a9d8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  color: white;
}

/* Map Styles */
.map-section {
  background-color: var(--bg-secondary);
  padding: 80px 0;
}

.map-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Blog Section */
.blog-section {
  background-color: var(--bg-primary);
  padding: 80px 0;
}

.blog-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-secondary) 100%);
  padding: 120px 0 80px 0;
  margin-top: 80px;
}

.blog-hero-title {
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.blog-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.blog-posts-section {
  background-color: var(--bg-primary);
  padding: 80px 0;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(42, 157, 143, 0.2);
  border-color: var(--secondary-color);
}

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

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.blog-category {
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-date {
  color: var(--text-secondary);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--secondary-color);
}

.blog-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.read-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--tertiary-color);
}

.blog-views {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Blog Post Detail */
.blog-post-section {
  background-color: var(--bg-primary);
  padding: 120px 0 80px 0;
  margin-top: 80px;
}

.blog-post {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
}

.blog-post-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-post-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-post-excerpt {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.blog-post-image {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-post-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-post-content {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.1rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.blog-author strong {
  color: var(--text-primary);
}

.blog-share .btn {
  margin-left: 0.5rem;
}

.related-posts h3 {
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.related-posts .card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.related-posts .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(42, 157, 143, 0.2);
}

.related-posts .card-title a {
  color: var(--text-primary);
  text-decoration: none;
}

.related-posts .card-title a:hover {
  color: var(--secondary-color);
}

.related-posts .card-text {
  color: var(--text-secondary);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-secondary);
}

.map-container iframe {
  border-radius: 15px;
}

/* FAQ Styles */
.faq-section {
  background-color: var(--bg-primary);
  padding: 80px 0;
}

.accordion-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--card-bg);
  color: var(--text-primary);
  border: none;
  font-weight: 600;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: #2a9d8f;
  color: white;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(42, 157, 143, 0.25);
}

.accordion-body {
  background-color: var(--card-bg);
  color: var(--text-secondary);
  padding: 1.5rem;
  line-height: 1.6;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
  background-color: #0a192f !important;
  backdrop-filter: none;
  box-shadow: 0 2px 20px rgba(10, 25, 47, 0.3);
}

/* Blog detay sayfasında navbar şeffaf olmasın */
.blog-navbar {
  background-color: #0a192f !important;
  backdrop-filter: none !important;
}

/* Video Background Responsive */
@media (max-width: 768px) {
  .hero-video-background video {
    /* Mobil cihazlarda video performansı için */
    transform: scale(1.1);
  }
  
  .hero-overlay {
    /* Mobilde daha koyu overlay */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  }
}

/* Video Background Fallback */
.hero-video-background img {
  display: none; /* Varsayılan olarak gizli */
}

.hero-video-background img.fallback-active {
  display: block; /* Video yüklenemezse göster */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-title {
    font-size: 2rem;
  }
  
  .contact-form-container,
  .contact-info {
    padding: 2rem;
  }
  
  .newsletter-content {
    padding: 2rem;
  }
  
  .project-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-image {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
