:root {
  --primary-color: #003366;
  --secondary-color: #007bff;
  --text-color: #333;
  --light-bg: #f5f7fa;
  --border-color: #e0e0e0;
  --focus-outline: 3px solid #007bff;
  --focus-outline-offset: 2px;
}

/* Tayland Erişim Bildirimi */
.thailand-access-notice {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
  position: relative;
  z-index: 999;
  animation: slideDown 0.5s ease-out;
}

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

.notice-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  position: relative;
}

.notice-flag {
  font-size: 24px;
  animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.notice-text {
  flex: 1;
  max-width: 600px;
}

.notice-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.notice-button {
  background: white;
  color: #ff6b6b;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.notice-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.notice-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.notice-close:hover {
  background: rgba(255,255,255,0.2);
}

/* Global Access Status */
.global-access-status {
  margin-top: 20px;
  padding: 15px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-online {
  background: #28a745;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.supported-regions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666;
}

.supported-regions span {
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 15px;
  border: 1px solid #e9ecef;
}

@media (max-width: 768px) {
  .notice-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .notice-text {
    font-size: 14px;
  }
  
  .notice-close {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  .supported-regions {
    justify-content: center;
    font-size: 12px;
  }
  
  .global-access-status {
    margin-top: 15px;
    padding: 12px;
  }
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;
}

/* Header Styles */
.navbar {
  background: var(--primary-color);
  padding: 0.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.logo img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Logo size for mobile */
@media (max-width: 768px) {
  .logo img {
    height: 65px;
  }
  
  .logo {
    padding: 0;
  }
}

/* Logo in different page contexts */
.page-header .logo img,
.footer .logo img,
.about-content .logo img,
.services .logo img,
.blog-container .logo img {
  height: 75px;
}

@media (max-width: 768px) {
  .page-header .logo img,
  .footer .logo img,
  .about-content .logo img,
  .services .logo img,
  .blog-container .logo img {
    height: 50px;
  }
}

/* Navbar specific logo adjustments */
.navbar .logo {
  margin-right: 1rem;
}

/* Dark background specific logo adjustments */
.hero .logo img,
.footer .logo img,
.page-header .logo img {
  filter: brightness(1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.nav-links li a:hover {
  opacity: 0.8;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 10;
}

.hamburger div {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Hamburger Animation */
.hamburger.active div:first-child {
  transform: rotate(45deg);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg);
}

@media (max-width: 968px) {
  .nav-container {
    justify-content: space-between;
    gap: 1rem;
    display: flex;
    align-items: center;
  }

  /* Logo */
  .nav-container .logo {
    order: 1;
  }

  /* Desktop dil seçimini kesinlikle gizle - TÜM DİL SEÇİMLERİNİ KALDIR */
  .desktop-lang-selector,
  .language-selector.desktop-lang-selector,
  #langSelector.desktop-lang-selector,
  #langSelector,
  .language-selector:not(.mobile-lang-selector .language-selector) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
  
  /* Nav container içindeki tüm dil seçimlerini gizle */
  .nav-container .language-selector:not(.mobile-lang-selector .language-selector),
  .nav-container .desktop-lang-selector,
  .nav-container #langSelector {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  /* Desktop'ta mobil dil seçiciyi gizle */
  @media (min-width: 969px) {
    .mobile-lang-selector {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      width: 0 !important;
      height: 0 !important;
      margin: 0 !important;
      padding: 0 !important;
      overflow: hidden !important;
    }
  }

  /* Online işlemler butonunu göster (dil seçiminin yerine) */
  .online-operations-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 2;
    margin-left: auto;
    margin-right: 1rem;
    flex-shrink: 0;
    position: relative !important;
    z-index: 10;
  }

  /* Hamburger butonunu en sağa al ve kesinlikle göster */
  .hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 3;
    flex-shrink: 0;
    position: relative !important;
    z-index: 15;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.98);
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    z-index: 5;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
  }

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

  .nav-links li a {
    font-size: 1.5rem;
    padding: 1rem;
  }

  /* Mobil menüde dil seçimini göster */
  .mobile-lang-selector {
    display: block !important;
    width: 100%;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
  }
  
  /* Hero badge - Desktop'ta göster, mobilde gizle */
  .desktop-badge {
    display: block !important;
  }
  
  /* Mobil fiyat hesaplama formu sadece mobilde görünür */
  .mobile-quick-price-form {
    display: none !important;
  }
  
  @media (max-width: 768px) {
    .mobile-quick-price-form {
      display: block !important;
    }
  }

  .mobile-lang-selector .language-selector {
    width: 100%;
  }

  .mobile-lang-selector .current-lang {
    width: 100%;
    justify-content: center;
  }

  .mobile-lang-selector .lang-dropdown {
    width: 100%;
    left: 0;
    right: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
    padding: 0;
  }

  .hero-quote-form {
    max-width: 600px;
    margin-top: 0;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-text {
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .hero-description {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
  }

  .hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .feature-item {
    flex: 0 1 auto;
    min-width: auto;
    padding: 12px 20px;
    width: auto;
    box-sizing: border-box;
  }

  .quote-section {
    padding: 30px 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .quote-box {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-form {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-row {
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
  }

  .form-group {
    width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 10px;
  }

  .hero-text {
    padding: 0 5px;
  }

  .hero-features {
    padding: 0 5px;
  }

  .feature-item {
    width: 100%;
    margin: 5px 0;
    padding: 10px 15px;
  }

  .quote-section {
    padding: 20px 10px;
  }

  .quote-box {
    padding: 15px;
  }

  .mobile-form {
    padding: 15px;
  }

  .form-row {
    gap: 12px;
    margin-bottom: 12px;
  }
}

@media (max-width: 360px) {
  .hero-container,
  .hero-text,
  .hero-features {
    padding: 0 5px;
  }

  .quote-box,
  .mobile-form {
    padding: 12px;
  }

  .feature-item {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: white;
}

.hero-description {
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 800px;
}

.hero-description p {
  margin: 10px 0;
}

.highlight {
  color: #ffd700;
  font-weight: bold;
}

.hero-features {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 200px;
  flex: 1;
  justify-content: center;
}

.feature-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
  font-size: 24px;
}

.quote-section {
  background: var(--primary-color);
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('assets/pattern.png') repeat; */ /* Dosya bulunamadığı için geçici olarak kaldırıldı */
  opacity: 0.1;
  z-index: 0;
}

.quote-box {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.quote-header {
  text-align: center;
  margin-bottom: 20px;
}

.quote-header h2 {
  color: white;
  font-size: 1.8em;
  margin-bottom: 8px;
}

.quote-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1em;
}

.quote-form {
  background: linear-gradient(to bottom, var(--primary-color), #004080);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
              inset 0 -2px 8px rgba(0, 0, 0, 0.2);
  color: white;
  position: relative;
  overflow: hidden;
}

.quote-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.quote-form .form-group label {
  color: rgba(255, 255, 255, 0.9);
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
  background: rgba(0, 48, 96, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
  background: rgba(0, 48, 96, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1),
              inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-form .form-group input::placeholder,
.quote-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.quote-form .form-group select option {
  background: var(--primary-color);
  color: white;
}

.quote-form #quoteResult {
  background: rgba(0, 48, 96, 0.5);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  color: white;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-form #calculatedPrice {
  color: #ffd700;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.quote-form #serviceFeatures {
  color: rgba(255, 255, 255, 0.9);
}

.quote-form #serviceFeatures li:before {
  color: #ffd700;
}

.quote-form .cta-button {
  background: #ffd700;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.quote-form .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.button-icon {
  margin-right: 8px;
  font-size: 1.2em;
}

#quoteResult {
  margin-top: 15px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.2); /* Yarı saydam koyu arka plan */
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: none; /* Başlangıçta gizli */
}

#calculatedPrice {
  font-size: 1.8em; /* Daha büyük yazı */
  font-weight: bold;
  color: #ffd700; /* Altın sarısı rengi */
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Yazıya gölge */
}

#calculatedPrice strong {
    font-weight: normal;
    color: #ffffff; /* "Tahmini Fiyat:" yazısı için beyaz renk */
    font-size: 0.7em;
    display: block;
    margin-bottom: 5px;
}

#serviceFeatures {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #f0f0f0; /* Özellikler için daha açık bir renk */
  font-size: 0.9em;
}

#serviceFeatures li {
  display: inline-block;
  margin: 0 10px;
}

#serviceFeatures li i {
    color: #28a745; /* Onay ikonu için yeşil renk */
    margin-right: 5px;
}

.quote-form .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.button-icon {
  margin-right: 8px;
  font-size: 1.2em;
}

#quoteResult {
  margin-top: 15px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

#calculatedPrice {
  font-size: 1.8em;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#calculatedPrice strong {
    font-weight: normal;
    color: #ffffff;
    font-size: 0.7em;
    display: block;
    margin-bottom: 5px;
}

#serviceFeatures {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #f0f0f0;
  font-size: 0.9em;
}

#serviceFeatures li {
  display: inline-block;
  margin: 0 10px;
}

#serviceFeatures li i {
    color: #28a745;
    margin-right: 5px;
}

/* Features Section */
.features {
  padding: 1.5rem 2rem 3rem;
  background: var(--primary-color);
  color: white;
  position: relative;
  z-index: 1;
}

.features h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  backdrop-filter: blur(5px);
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-box h3 {
  color: white;
  margin: 1rem 0;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.9);
}

.learn-more {
  color: #ffd700;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
}

.learn-more:hover {
  color: white;
}

.feature-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-buttons .cta-button {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
}

.feature-buttons .learn-more {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.feature-buttons .learn-more:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .feature-buttons {
    flex-direction: column;
  }
  
  .feature-buttons .cta-button,
  .feature-buttons .learn-more {
    width: 100%;
  }
}

/* How It Works Section */
.how-it-works {
  padding: 2rem 2rem;
  background: var(--light-bg);
}

.how-it-works h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.step h3 {
    color: var(--primary-color);
}

.step p {
    color: var(--text-color);
}

/* CTA Section */
.cta {
    background-color: #f4f7fc;
    padding: 60px 20px;
    text-align: center;
}
.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.cta-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.cta-button {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s, transform 0.3s;
}
.cta-button.secondary {
    background-color: #e0e0e0;
    color: #333;
}
.cta-button:hover {
    transform: translateY(-5px);
    background-color: #ff9900;
}
.cta-button.secondary:hover {
    background-color: #ccc;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 50px 20px 0; /* Alt padding .footer-bottom'dan gelecek */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
}

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

.footer-section p, .footer-section li {
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    width: 20px;
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact p {
        justify-content: center;
    }
}

/* About Page Styles */
.about-content {
  padding: 4rem 0;
  background: white;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-text h3 {
  color: var(--secondary-color);
  margin: 2rem 0 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.values-section {
  margin: 4rem 0;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

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

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 10px;
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.team-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

.team-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-color);
  opacity: 0.8;
}

/* Contact Form Styles */
.contact-form {
  padding: 4rem 0;
  background: white;
}

.contact-form .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.form-container {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.success-message {
  text-align: center;
  padding: 2rem;
}

.success-message h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.info-text strong {
  display: block;
  margin-bottom: 0.25rem;
}

.info-text p {
  color: var(--text-color);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form .container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: -1;
  }
}

/* Partners Section Styles */
.partners-section {
  padding: 4rem 0;
  background: white;
}

.partners-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.partner-logo {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partner-logo {
    max-width: 150px;
  }
}

/* Quote Form Page Styles */
.quote-form-page {
  padding: 40px 0;
  background: var(--light-bg);
  min-height: calc(100vh - 200px);
}

.quote-form-page .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.quote-form-page h1 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 10px;
}

.form-description {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.detailed-quote-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.form-section:last-child {
  border-bottom: none;
}

.form-section h2 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.detailed-quote-form .form-group {
  margin-bottom: 20px;
}

.detailed-quote-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.detailed-quote-form input,
.detailed-quote-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.detailed-quote-form textarea {
  min-height: 100px;
  resize: vertical;
}

.detailed-quote-form input:focus,
.detailed-quote-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
  outline: none;
}

.submit-button {
  background: linear-gradient(135deg, #0056b3 0%, #003366 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .quote-form-page {
    padding: 20px 0;
  }
  
  .detailed-quote-form {
    padding: 20px;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .form-row .form-group {
    width: 100%;
  }
}

/* Blog Sayfası Stilleri */
.blog-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.blog-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

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

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h2 {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
}

.blog-content h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #007bff;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

/* Sosyal Medya Linkleri */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card img {
        height: 250px;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-content h2 {
        font-size: 1.2rem;
    }
}

/* Small Screen Optimizations */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.5rem;
  }

  .logo img {
    height: 50px;
  }

  .language-selector {
    margin-right: 45px;
  }
  
  /* Desktop dil seçimini kesinlikle gizle - TÜM DİL SEÇİMLERİNİ KALDIR */
  .desktop-lang-selector,
  .language-selector.desktop-lang-selector,
  #langSelector.desktop-lang-selector,
  #langSelector,
  .language-selector:not(.mobile-lang-selector .language-selector) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
  
  /* Nav container içindeki tüm dil seçimlerini gizle */
  .nav-container .language-selector:not(.mobile-lang-selector .language-selector),
  .nav-container .desktop-lang-selector,
  .nav-container #langSelector {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
  
  /* Online işlemler butonunu göster */
  .online-operations-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 2;
    margin-left: auto;
    margin-right: 1rem;
    flex-shrink: 0;
    position: relative !important;
    z-index: 10;
  }
  
  /* Hamburger butonunu en sağa al ve kesinlikle göster */
  .hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 3;
    flex-shrink: 0;
    position: relative !important;
    z-index: 15;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .quote-box {
    margin: 0.5rem;
    padding: 0.5rem;
  }

  .cta-button {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* Extra Small Screen Optimizations */
@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .feature-grid {
    gap: 1rem;
  }
  
  .form-row {
    gap: 8px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Improved Typography for Mobile */
@media (max-width: 768px) {
  body {
    line-height: 1.7;
  }
  
  p {
    font-size: 16px;
    margin-bottom: 1.2em;
  }
  
  h1 {
    line-height: 1.3;
  }
  
  h2, h3 {
    line-height: 1.4;
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Reduce animation complexity on mobile */
  .feature-box:hover,
  .service-card:hover,
  .blog-card:hover,
  .partner-logo:hover {
    transform: none;
  }
  
  /* Optimize images for mobile */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Reduce shadow complexity */
  .blog-card,
  .feature-box,
  .service-card,
  .quote-box {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  /* Optimize font rendering */
  body {
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
  }
  
  /* Reduce motion for better performance */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .nav-links li a:active,
  .cta-button:active,
  .language-selector .current-lang:active,
  .language-selector .lang-option:active {
    opacity: 0.7;
    transform: scale(0.98);
  }
}

/* Online İşlemler Button */
.online-operations-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px 20px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
  margin-left: 1rem;
  margin-right: 0;
  visibility: visible;
  opacity: 1;
}

.online-operations-btn i {
  font-size: 1rem;
}

.online-operations-btn:hover {
  background: linear-gradient(135deg, #218838, #1ea080);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
  color: white;
}

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


/* Language Selector Styles */
.language-selector {
  position: relative;
  cursor: pointer;
  margin-right: 0;
}

.current-lang {
  padding: 8px 15px;
  background: #f8f9fa;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 120px;
}

.lang-option {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s;
}

.lang-option:hover {
  background-color: #f8f9fa;
}

.feature-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .feature-text {
    font-size: 1rem;
  }
  
  /* Desktop dil seçimini gizle */
  .desktop-lang-selector {
    display: none !important;
  }
  
  /* Online işlemler butonunu göster */
  .online-operations-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 2;
    margin-left: auto;
    margin-right: 1rem;
    flex-shrink: 0;
    position: relative !important;
    z-index: 10;
  }
  
  /* Hamburger butonunu en sağa al */
  .hamburger {
    display: flex !important;
    order: 3;
    flex-shrink: 0;
  }
  
  /* Mobilde hero badge yerine hızlı fiyat hesaplama formu göster */
  .desktop-badge {
    display: none !important;
  }
  
  /* Sadece hero section içindeki mobil fiyat hesaplama formunu göster */
  .hero-visual-modern .mobile-quick-price-form {
    display: block !important;
    width: 100%;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }
  
  /* Desktop'ta hero section içindeki formu da gizle */
  @media (min-width: 969px) {
    .hero-visual-modern .mobile-quick-price-form {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      height: 0 !important;
      overflow: hidden !important;
      margin: 0 !important;
      padding: 0 !important;
    }
  }
  
  .quick-price-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .quick-price-header h3 {
    color: #1a4ba3;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .quick-price-header p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
  }
  
  .quick-price-form .form-group {
    margin-bottom: 1rem;
  }
  
  .quick-price-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
  }
  
  .quick-price-form select,
  .quick-price-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #333;
    box-sizing: border-box;
  }
  
  .quick-price-form select:focus,
  .quick-price-form input:focus {
    border-color: #1a4ba3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 75, 163, 0.1);
  }
  
  .quick-price-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .quick-price-submit-btn:hover {
    background: linear-gradient(135deg, #218838, #1ea080);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
  }
  
  .quick-price-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
  }
  
  .price-loading,
  .price-error,
  .price-success {
    text-align: center;
    padding: 1rem;
  }
  
  .price-loading {
    color: #1a4ba3;
  }
  
  .price-loading i {
    margin-right: 0.5rem;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .price-error {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.3);
  }
  
  .price-success {
    color: #333;
  }
  
  .price-success h4 {
    color: #28a745;
    margin-bottom: 1rem;
  }
  
  .calculated-price {
    font-size: 2rem;
    font-weight: bold;
    color: #28a745;
    margin: 1rem 0;
    padding: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
  }
  
  .price-service-info,
  .price-delivery-info {
    margin: 0.75rem 0;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9rem;
  }
  
  .price-breakdown {
    margin-top: 1rem;
    text-align: left;
  }
  
  .price-breakdown ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
  }
  
  .price-breakdown li {
    padding: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
  }
  
  .price-breakdown li:last-child {
    border-bottom: none;
    font-weight: bold;
    border-top: 2px solid #28a745;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
  }
}

/* Blog Post Styles */
.blog-post {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

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

.blog-header h1 {
  font-size: 2.5rem;
  color: #1a4ba3;
  margin-bottom: 1rem;
}

.blog-meta {
  color: #666;
  font-size: 0.9rem;
}

.blog-meta span {
  margin: 0 1rem;
}

.blog-content {
  line-height: 1.8;
  color: #333;
}

.blog-content h2 {
  color: #1a4ba3;
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
}

.blog-content h3 {
  color: #2c3e50;
  margin: 1.5rem 0 1rem;
  font-size: 1.4rem;
}

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

.blog-content ul, .blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.featured-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 2rem auto;
  display: block;
}

.content-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem auto;
  display: block;
}

/* Breadcrumb Navigation */
.breadcrumb {
  background: #f8f9fa;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: inline;
  font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  color: #666;
}

.breadcrumb a {
  color: #1a4ba3;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Share Buttons */
.share-buttons {
  margin: 3rem 0;
  text-align: center;
}

.share-buttons h3 {
  margin-bottom: 1rem;
  color: #1a4ba3;
}

.share-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.share-button.facebook {
  background: #3b5998;
}

.share-button.twitter {
  background: #1da1f2;
}

.share-button.linkedin {
  background: #0077b5;
}

.share-button:hover {
  opacity: 0.9;
}

/* Related Posts */
.related-posts {
  margin: 3rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.related-posts h3 {
  color: #1a4ba3;
  margin-bottom: 1.5rem;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-post {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}

.related-post:hover {
  transform: translateY(-5px);
}

.related-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-post h4 {
  color: #1a4ba3;
  margin: 1rem;
  font-size: 1.2rem;
}

.related-post p {
  margin: 0 1rem 1rem;
  color: #666;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  color: #1a4ba3;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #1a4ba3;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background: #153b82;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-post {
    padding: 1rem;
  }

  .blog-header h1 {
    font-size: 2rem;
  }

  .blog-meta span {
    display: block;
    margin: 0.5rem 0;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .share-button {
    display: block;
    margin: 0.5rem 0;
  }
}

/* Lazy Loading */
.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy.loaded {
  opacity: 1;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Print Styles */
@media print {
  .blog-post {
    max-width: none;
    padding: 0;
  }

  .share-buttons,
  .cta-section,
  .related-posts {
    display: none;
  }

  .blog-content {
    font-size: 12pt;
  }

  .blog-content img {
    max-width: 100%;
    page-break-inside: avoid;
  }
}

/* Sosyal Medya İkonları */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #1a4ba3;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #1a4ba3;
  color: white;
  transform: translateY(-3px);
}

.social-icons i {
  font-size: 1.2rem;
}

/* İletişim Bilgileri */
.contact-info {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.contact-info h3 {
  color: #1a4ba3;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.contact-info p {
  margin: 5px 0;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #1a4ba3;
  width: 20px;
}

.contact-info a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #1a4ba3;
}

/* Klavye Navigasyonu için Focus Stilleri */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Yüksek Kontrast Modu */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0000ff;
    --secondary-color: #0000ff;
    --text-color: #000000;
    --light-bg: #ffffff;
    --border-color: #000000;
  }
  
  img {
    filter: contrast(1.2);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ARIA States */
[aria-hidden="true"] {
  display: none !important;
}

[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form Erişilebilirliği */
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
  color: var(--primary-color);
}

.form-group .error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Buton Erişilebilirliği */
button {
  min-height: 44px;
  min-width: 44px;
}

.cta-button {
  padding: 12px 24px;
  font-size: 1rem;
  line-height: 1.5;
}

/* Link Erişilebilirliği */
a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

a:hover,
a:focus {
  text-decoration-thickness: 2px;
}

/* Tablo Erişilebilirliği */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}

th {
  background-color: var(--light-bg);
  font-weight: 600;
  text-align: left;
  padding: 0.75rem;
}

td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

/* Liste Erişilebilirliği */
ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Görsel Erişilebilirliği */
img {
  max-width: 100%;
  height: auto;
}

img[alt=""] {
  border: 2px dashed #dc3545;
}

/* Renk Kontrastı İyileştirmeleri */
.text-primary {
  color: #0000ff;
}

.text-secondary {
  color: #0000ff;
}

.bg-primary {
  background-color: #0000ff;
  color: #ffffff;
}

.bg-secondary {
  background-color: #0000ff;
  color: #ffffff;
}

/* Blog sayfalarında logo boyutunu küçült */
.blog-post .navbar .logo img,
.blog-post .logo img,
header.navbar .logo img {
  max-height: 60px !important;
  height: 60px !important;
  width: auto !important;
}

header.navbar .logo img {
  height: 80px !important;
}

.footer .logo img {
  height: 75px !important;
}

.hero-quote-form .form-group.full-width {
  width: 100%;
}

/* Modal Stilleri */
.modal {
  display: none; /* Başlangıçta gizli */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6); /* Yarı saydam arka plan */
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid #888;
  width: 80%;
  max-width: 700px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: slide-down 0.5s ease-out;
}

@keyframes slide-down {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-button {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#modalTitle {
  text-align: center;
  margin-top: 0;
  color: var(--primary-color);
}

#modalResultsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.result-card {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  width: calc(50% - 40px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.result-card h3 {
  margin: 0 0 10px 0;
  color: var(--secondary-color);
  font-size: 1.3em;
}

.result-card .price {
  font-size: 2em;
  font-weight: bold;
  color: var(--primary-color);
}

.result-card .price .currency {
  font-size: 0.6em;
  margin-left: 5px;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    margin: 20% auto;
  }
  .result-card {
    width: 100%;
  }
}

@media (max-width: 968px) {
  .quote-section {
    padding: 20px;
    gap: 30px;
  }
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-bottom {
    background-color: #ffffff; /* Sadece en alt bölümün arka planı beyaz yapıldı */
    color: #333333; /* İçindeki yazı rengi koyu yapıldı */
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0; /* Açık gri bir üst çizgi eklendi */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* İkonlar ve yazı arasına boşluk ekler */
}

/* Footer Social Media Icons */
.social-media-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-media-links a {
    color: white; /* İkon rengi beyaz kalabilir */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: #1a4ba3; /* İkonların arka planı mavi olarak ayarlandı */
    width: 40px;
    height: 40px;
    justify-content: center;
}

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

/* ANA SAYFA ÖZEL STİLLERİ */

/* Features Section (Anasayfa - Beyaz Zemin) */
.home-page .features {
  padding: 3rem 2rem;
  background: #ffffff;
  color: var(--text-color);
}
.home-page .features h2 {
  color: var(--primary-color);
  margin-bottom: 3rem;
}
.home-page .feature-box {
  background: #f8f9fa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.home-page .feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}
.home-page .feature-box h3 {
  color: var(--primary-color);
}
.home-page .feature-box p {
  color: var(--text-color);
}
.home-page .learn-more {
  color: var(--secondary-color);
  font-weight: 600;
}
.home-page .learn-more:hover {
  color: var(--primary-color);
}

/* How It Works Section (Anasayfa - Mavi Zemin) */
.home-page .how-it-works {
  background: var(--primary-color);
  color: #ffffff;
  padding: 4rem 2rem;
}
.home-page .how-it-works h2,
.home-page .how-it-works h3 {
  color: #ffffff;
}
.home-page .how-it-works .step p {
  color: rgba(255, 255, 255, 0.9);
}
.home-page .how-it-works .step-number {
  background: #ffffff;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Section (Anasayfa - Beyaz Zemin) */
.home-page .cta {
  background-color: #ffffff;
}

.home-page .cta h2 {
    color: var(--primary-color);
}

.home-page .cta p {
    color: var(--text-color);
}

/* Page Header (Tüm alt sayfalarda başlık alanı) */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}
.page-header h1 {
    margin: 0;
    font-size: 2.5rem;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Page */
.services {
    padding: 3rem 1rem;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.service-card h2 {
    color: var(--primary-color);
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}
.service-features li {
    margin-bottom: 0.5rem;
}
.service-features li::before {
  content: '✓';
  color: var(--secondary-color);
  margin-right: 10px;
}

.service-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-buttons .cta-button {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
}

.service-buttons .cta-button.secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.service-buttons .cta-button.secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-buttons {
    flex-direction: column;
  }
  
  .service-buttons .cta-button {
    width: 100%;
  }
}

/* FAQ Page (SSS) */
.faq-section {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.faq-categories {
    text-align: center;
    margin-bottom: 2rem;
}
.faq-category {
    background: none;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
.faq-category.active, .faq-category:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.faq-question {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}
.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
    margin: 0;
    padding-bottom: 1.5rem;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

/* Hero Section */
main > .hero {
  background: linear-gradient(135deg, #0056b3 0%, #003366 100%);
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 0;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
}

.hero-content {
  padding-top: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.hero-text {
  flex: 0.9;
  max-width: 45%;
}

/* Hero quote form kaldırıldı - sidebar'dan kaldırıldı */
.hero-quote-form {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 0 !important;
  max-width: 0 !important;
}

.hero-quote-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.hero-quote-form h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-align: center;
}

.hero-quote-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-quote-form .form-group {
  flex: 1;
}

.hero-quote-form .form-group input,
.hero-quote-form .form-group select {
  padding: 14px 16px;
  font-size: 1rem;
}

.hero-quote-form .form-group input:focus,
.hero-quote-form .form-group select:focus {
  background: rgba(0, 48, 96, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1),
              inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-quote-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-quote-form .form-group select option {
  background: var(--primary-color);
  color: white;
}

.hero-quote-form #quoteResult {
  background: rgba(0, 48, 96, 0.5);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  color: white;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-quote-form #calculatedPrice {
  color: #ffd700;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-quote-form #serviceFeatures {
  color: rgba(255, 255, 255, 0.9);
}

.hero-quote-form #serviceFeatures li:before {
  color: #ffd700;
}

.hero-quote-form .cta-button {
  background: #ffd700;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-quote-form .cta-button:hover {
  background: #ffed4a;
  transform: translateY(-2px);
}

.mobile-only {
  display: none;
}

@media (min-width: 969px) {
  .mobile-only {
    display: none;
  }
  
  /* Desktop'ta fiyat hesaplama formunu kesinlikle gizle */
  .mobile-quick-price-form {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Desktop'ta hero quote form'u da kesinlikle gizle (sidebar'dan kaldırıldı) */
  .hero-quote-form {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 0 !important;
    max-width: 0 !important;
  }
  
  /* Desktop dil seçeneğini gizle (sadece mobil menüde olacak) */
  .desktop-lang-selector {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 1200px) {
  .hero-content {
    padding: 20px;
    gap: 30px;
  }

  .hero-text {
    flex: 1;
    max-width: 42%;
  }

  .hero-quote-form {
    flex: 1.2;
    max-width: 58%;
    padding: 25px;
  }
}

@media (max-width: 968px) {
  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-container {
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
    padding: 0;
  }

  .hero-quote-form {
    max-width: 600px;
    margin-top: 0;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-text {
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .hero-description {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
  }

  .hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .feature-item {
    flex: 0 1 auto;
    min-width: auto;
    padding: 12px 20px;
    width: auto;
    box-sizing: border-box;
  }

  .quote-section {
    padding: 30px 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .quote-box {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-form {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-row {
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
  }

  .form-group {
    width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 10px;
  }

  .hero-text {
    padding: 0 5px;
  }

  .hero-features {
    padding: 0 5px;
  }

  .feature-item {
    width: 100%;
    margin: 5px 0;
    padding: 10px 15px;
  }

  .quote-section {
    padding: 20px 10px;
  }

  .quote-box {
    padding: 15px;
  }

  .mobile-form {
    padding: 15px;
  }

  .form-row {
    gap: 12px;
    margin-bottom: 12px;
  }
}

@media (max-width: 360px) {
  .hero-container,
  .hero-text,
  .hero-features {
    padding: 0 5px;
  }

  .quote-box,
  .mobile-form {
    padding: 12px;
  }

  .feature-item {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: white;
}

.hero-description {
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 800px;
}

.hero-description p {
  margin: 10px 0;
}

.highlight {
  color: #ffd700;
  font-weight: bold;
}

.hero-features {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 200px;
  flex: 1;
  justify-content: center;
}

.feature-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
  font-size: 24px;
}

/* Blog Sayfası İyileştirmeleri */
.featured-post {
  margin-bottom: 3rem;
}

.featured-card {
  display: flex;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.featured-card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.featured-content {
  padding: 2rem;
  flex: 1;
  position: relative;
}

.featured-badge {
  background: linear-gradient(45deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top: -10px;
  right: 20px;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.featured-content h3 {
  margin: 1rem 0;
  font-size: 1.5rem;
  color: #2c3e50;
}

.featured-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.featured-meta {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #666;
}

.featured-read-more {
  background: linear-gradient(45deg, var(--primary-color), #0056b3);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 75, 163, 0.3);
}

.featured-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 75, 163, 0.4);
}

/* Blog Card İyileştirmeleri */
.blog-card.featured-article {
  position: relative;
  border: 2px solid #e3f2fd;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.new-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #4caf50, #45a049);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.blog-category {
  background: linear-gradient(45deg, var(--primary-color), #0056b3);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.85rem;
  color: #666;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Blog Post Sayfa İyileştirmeleri */
.article-intro {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.article-intro p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.table-of-contents {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.table-of-contents h3 {
  margin-top: 0;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.table-of-contents ol {
  margin: 1rem 0 0 0;
  padding-left: 1.5rem;
}

.table-of-contents li {
  margin: 0.5rem 0;
}

.table-of-contents a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s ease;
}

.table-of-contents a:hover {
  color: var(--primary-color);
}

.highlight-box {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
  margin-top: 0;
  color: #856404;
}

.case-study {
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
  border-left: 4px solid #17a2b8;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.case-study h4 {
  margin-top: 0;
  color: #0c5460;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefit-item h4 {
  margin: 1rem 0 0.5rem 0;
  color: #2c3e50;
}

.statistics {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  border: 1px solid #c3e6cb;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.statistics h4 {
  margin-top: 0;
  color: #155724;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.stat-item {
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.seo-tips {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border-left: 4px solid #dc3545;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.seo-tips h4 {
  margin-top: 0;
  color: #721c24;
}

.tools-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tool-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.tool-item h5 {
  margin-top: 0;
  color: var(--primary-color);
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 0.5rem;
}

.tool-item ul {
  margin: 1rem 0 0 0;
  padding-left: 1.5rem;
}

.advantages-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.advantage-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.advantage-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.advantage-card h4 {
  margin: 1rem 0 0.5rem 0;
  color: #2c3e50;
}

.metrics-table {
  overflow-x: auto;
  margin: 2rem 0;
}

.metrics-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.metrics-table th {
  background: var(--primary-color);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.metrics-table td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.metrics-table tr:last-child td {
  border-bottom: none;
}

.metrics-table tr:nth-child(even) {
  background: #f8f9fa;
}

.future-trends {
  background: linear-gradient(135deg, #e1f5fe 0%, #f0f8ff 100%);
  border: 1px solid #b3e5fc;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.future-trends h4 {
  margin-top: 0;
  color: #01579b;
}

.action-steps {
  background: linear-gradient(135deg, #f3e5f5 0%, #f8f5f8 100%);
  border: 1px solid #e1bee7;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.action-steps h4 {
  margin-top: 0;
  color: #4a148c;
}

.action-steps ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.action-steps li {
  margin: 1rem 0;
  line-height: 1.6;
}

.we-cargo-integration {
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: white;
  padding: 2.5rem;
  border-radius: 12px;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.we-cargo-integration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.we-cargo-integration h3 {
  margin-top: 0;
  color: white;
}

.we-cargo-integration ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.we-cargo-integration li {
  margin: 1rem 0;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-button.primary {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: none;
}

.cta-button.secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
  background: var(--primary-color);
  color: white;
}

.keywords-section {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.keywords-section h4 {
  margin-top: 0;
  color: #495057;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: linear-gradient(45deg, #6c757d, #5a6268);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-share {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.social-share .share-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-share .share-button.facebook {
  background: #3b5998;
  color: white;
}

.social-share .share-button.twitter {
  background: #1da1f2;
  color: white;
}

.social-share .share-button.linkedin {
  background: #0077b5;
  color: white;
}

.social-share .share-button.whatsapp {
  background: #25d366;
  color: white;
}

.social-share .share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.author-bio {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 12px;
  margin: 3rem 0;
  border: 1px solid #dee2e6;
}

.author-bio h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.contact-btn, .services-btn {
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn {
  background: var(--primary-color);
  color: white;
}

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

.contact-btn:hover, .services-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.footer-contact .contact-item {
  background: transparent !important;
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  margin-bottom: 0.75rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  color: white !important;
  transition: background 0.3s ease !important;
}

.footer-contact .contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact .contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-contact .contact-item i {
  color: white;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact .contact-item span,
.footer-contact .contact-item a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact .contact-item a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* Footer-modern.css override - İletişim bölümü tasarımı */
.footer-contact {
  display: flex !important;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  visibility: visible !important;
  padding-left: 0;
}

.footer-modern .contact-item,
.footer-modern .footer-contact .contact-item,
.footer-contact .contact-item,
div.footer-contact .contact-item,
.footer-column .footer-contact .contact-item {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem;
  line-height: 1.6;
  background: transparent !important;
  padding: 0.75rem 0;
  padding-left: 0;
  border-radius: 8px;
  margin-bottom: 0;
  box-shadow: none !important;
  border: none !important;
  transition: all 0.3s ease;
  visibility: visible !important;
}

.footer-modern .contact-item:hover,
.footer-modern .footer-contact .contact-item:hover,
.footer-contact .contact-item:hover,
div.footer-contact .contact-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  transform: translateX(5px);
}

.footer-contact .contact-item i {
  color: #60a5fa;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}

.footer-contact .contact-item span,
.footer-contact .contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
  word-wrap: break-word;
}

.footer-contact .contact-item a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

/* Mobil Responsive */
@media (max-width: 768px) {
  .featured-card {
    flex-direction: column;
  }
  
  .featured-card img {
    width: 100%;
    height: 200px;
  }
  
  .featured-content {
    padding: 1.5rem;
  }
  
  .featured-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .benefits-grid, .stats-grid, .tools-list, .advantages-section {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons, .contact-buttons {
    flex-direction: column;
  }
  
  .metrics-table {
    font-size: 0.9rem;
  }
  
  .social-share {
    justify-content: center;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), #0056b3);
  z-index: 9999;
  transition: width 0.25s ease-out;
}

.quote-section {
  background: var(--primary-color);
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('assets/pattern.png') repeat; */ /* Dosya bulunamadığı için geçici olarak kaldırıldı */
  opacity: 0.1;
  z-index: 0;
}

.quote-box {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.quote-header {
  text-align: center;
  margin-bottom: 20px;
}

.quote-header h2 {
  color: white;
  font-size: 1.8em;
  margin-bottom: 8px;
}

.quote-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1em;
}

.quote-form {
  background: linear-gradient(to bottom, var(--primary-color), #004080);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
              inset 0 -2px 8px rgba(0, 0, 0, 0.2);
  color: white;
  position: relative;
  overflow: hidden;
}

.quote-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.quote-form .form-group label {
  color: rgba(255, 255, 255, 0.9);
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
  background: rgba(0, 48, 96, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
  background: rgba(0, 48, 96, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1),
              inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-form .form-group input::placeholder,
.quote-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.quote-form .form-group select option {
  background: var(--primary-color);
  color: white;
}

.quote-form #quoteResult {
  background: rgba(0, 48, 96, 0.5);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  color: white;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-form #calculatedPrice {
  color: #ffd700;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.quote-form #serviceFeatures {
  color: rgba(255, 255, 255, 0.9);
}

.quote-form #serviceFeatures li:before {
  color: #ffd700;
}

.quote-form .cta-button {
  background: #ffd700;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.quote-form .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.button-icon {
  margin-right: 8px;
  font-size: 1.2em;
}

#quoteResult {
  margin-top: 15px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

#calculatedPrice {
  font-size: 1.8em;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#calculatedPrice strong {
    font-weight: normal;
    color: #ffffff;
    font-size: 0.7em;
    display: block;
    margin-bottom: 5px;
}

#serviceFeatures {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #f0f0f0;
  font-size: 0.9em;
}

#serviceFeatures li {
  display: inline-block;
  margin: 0 10px;
}

#serviceFeatures li i {
    color: #28a745;
    margin-right: 5px;
}



