@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Mulish:wght@400;500;600;700;800&family=Roboto:wght@400;500;700;900&display=swap');
body{
  font-family: 'Inter', 'Roboto', 'Mulish', sans-serif;
  line-height: 1.7;
  color: #1e293b;
  background-color: var(--bg-white);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Kurumsal Spacing ve Typography */
.container {
  max-width: 1200px;
}

section {
  padding: 4rem 0;
}

.lead {
  font-weight: 500;
  color: #334155;
  font-size: 1.125rem;
  line-height: 1.8;
}

.text-muted {
  color: #475569 !important;
  font-weight: 500;
}

/* Profesyonel Shadow Efektleri */
.shadow-sm {
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08) !important;
}

.shadow {
  box-shadow: var(--steel-shadow) !important;
}

.shadow-lg {
  box-shadow: var(--steel-shadow-lg) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.03em;
}

h1 {
  font-weight: 900;
}

h2 {
  font-weight: 800;
}

h3, h4 {
  font-weight: 700;
}

p {
  font-weight: 500;
  color: #1e293b;
  line-height: 1.8;
}

.harita iframe{
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Page Styles */
.contact-info-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

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

.contact-icon-circle {
  width: 80px;
  height: 80px;
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon-circle {
  transform: scale(1.1) rotate(5deg);
}

/* Contact Form Styles */
.contact-form-wrapper {
  position: relative;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--steel-blue);
  box-shadow: 0 0 0 0.25rem rgba(44, 82, 130, 0.15);
  outline: none;
}

.contact-form .form-label {
  color: var(--steel-blue-dark);
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

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

/* Map Wrapper */
.map-wrapper {
  border: 2px solid #e9ecef;
}

.map-header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Social Media Card */
.social-media-card {
  transition: all 0.3s ease;
}

.social-media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--steel-shadow-lg);
}

.social-media-link {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.social-media-link:hover {
  background: var(--steel-gradient);
  border-color: var(--steel-blue);
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--steel-shadow);
}

.social-media-link img {
  transition: all 0.3s ease;
}

.social-media-link:hover img {
  filter: brightness(0) invert(1);
}

/* Form Button */
.contact-form button[type="submit"] {
  transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--steel-shadow-lg);
}

.contact-form button[type="submit"]:active {
  transform: translateY(-1px);
}

/* Responsive Contact */
@media (max-width: 768px) {
  .contact-info-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem !important;
  }
  
  .harita {
    height: 300px !important;
  }
  
  .map-wrapper {
    margin-bottom: 2rem;
  }
}

/* Blog Styles */
.blog-post-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--steel-shadow-lg);
  border-color: var(--steel-blue);
}

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

.blog-post-image {
  transition: all 0.5s ease;
}

.blog-image-wrapper:hover .blog-post-image {
  transform: scale(1.1);
}

.blog-overlay {
  background: rgba(44, 82, 130, 0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-image-wrapper:hover .blog-overlay {
  opacity: 1;
}

.blog-post-title a {
  transition: all 0.3s ease;
}

.blog-post-title a:hover {
  color: var(--accent-orange) !important;
}

.blog-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

.blog-content h2,
.blog-content h3 {
  color: var(--steel-blue-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.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;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.blog-cta-box {
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.sidebar-widget {
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  transform: translateY(-3px);
  box-shadow: var(--steel-shadow-lg);
}

.related-post-card {
  transition: all 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--steel-shadow);
}

.related-post-card img {
  transition: all 0.3s ease;
}

.related-post-card:hover img {
  transform: scale(1.05);
}

.pagination .page-link {
  color: var(--steel-blue);
  border-color: #e9ecef;
}

.pagination .page-item.active .page-link {
  background: var(--steel-gradient);
  border-color: var(--steel-blue);
}

.pagination .page-link:hover {
  background: var(--steel-light);
  border-color: var(--steel-blue);
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-post-image {
    height: 250px !important;
  }
  
  .blog-content {
    font-size: 1rem;
  }
  
  .blog-sidebar {
    margin-top: 3rem;
  }
}

/* ============================================
   PROFESYONEL İYİLEŞTİRMELER
   ============================================ */

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Loading Animation */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--corporate-gradient);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

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

.back-to-top:hover {
  transform: translateY(-5px);
  background: var(--accent-gradient);
  box-shadow: var(--accent-shadow);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: translateY(-5px) scale(1.1);
  background: #20BA5A;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-button svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .whatsapp-button {
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-button svg {
    width: 24px;
    height: 24px;
  }
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Card Hover Effects */
.professional-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.professional-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.professional-card:hover::before {
  left: 100%;
}

.professional-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Button Styles */
.btn-professional {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-professional::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-professional:hover::before {
  width: 300px;
  height: 300px;
}

.btn-professional span {
  position: relative;
  z-index: 1;
}

/* Enhanced Form Inputs */
.form-control-professional {
  position: relative;
  transition: all 0.3s ease;
}

.form-control-professional:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 82, 130, 0.2);
}

.form-control-professional::placeholder {
  transition: opacity 0.3s ease;
}

.form-control-professional:focus::placeholder {
  opacity: 0.5;
}

/* Image Zoom Effect */
.img-zoom {
  overflow: hidden;
  position: relative;
}

.img-zoom img {
  transition: transform 0.6s ease;
}

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

/* Text Gradient Animation */
.text-gradient-animated {
  background: linear-gradient(90deg, var(--steel-blue-dark), var(--accent-orange), var(--steel-blue-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
  to {
    background-position: 200% center;
  }
}

/* Shine Effect */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.shine-effect:hover::after {
  left: 100%;
}

/* Pulse Animation */
.pulse-animation {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(44, 82, 130, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(44, 82, 130, 0);
  }
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel-blue-light), transparent);
  margin: 4rem 0;
}

/* ============================================
   SEO OPTIMIZED NAVBAR - HIZLI VE GÖSTERİŞLİ
   ============================================ */

/* Header Top Bar */
.navbar-top-bar {
  background: linear-gradient(135deg, var(--steel-blue-dark) 0%, var(--corporate-dark) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
}

.navbar-top-content {
  gap: 2rem;
}

.navbar-top-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.navbar-top-icon {
  color: var(--accent-orange);
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}

.navbar-top-link:hover {
  color: var(--accent-orange);
  transform: translateX(3px);
}

.navbar-top-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--accent-gradient);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.navbar-top-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
  color: white;
}

/* SEO Navbar - Premium Design */
.navbar-seo {
  background: var(--dynamic-header-color) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.25rem 0 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-seo.scrolled {
  padding: 0.75rem 0 !important;
  background: rgba(26, 35, 50, 0.98) !important;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(230, 126, 34, 0.3);
}

.navbar-seo.scrolled .navbar-logo-premium {
  transform: scale(0.92);
}

.navbar-seo.scrolled .navbar-logo {
  transform: scale(0.95);
}

/* Navbar Backdrop */
.navbar-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(44, 62, 80, 0.95) 100%);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.navbar-seo.scrolled .navbar-backdrop {
  opacity: 1;
}

/* Logo */
.navbar-logo-wrapper {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 2rem;
  transition: all 0.3s ease;
}

.navbar-logo {
  height: 50px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.1);
}

.navbar-seo.scrolled .navbar-logo {
  height: 45px;
}

.navbar-logo-wrapper:hover .navbar-logo {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* Premium Logo Design - Gösterişli ve Ön Planda */
.navbar-logo-wrapper-premium {
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin-right: 3rem !important;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.logo-container-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff !important;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.logo-container-premium::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.2) 0%, rgba(230, 126, 34, 0.1) 100%);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.logo-container-premium:hover {
  background: #ffffff !important;
  border-color: rgba(230, 126, 34, 0.5);
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.3), 0 0 0 1px rgba(230, 126, 34, 0.1);
  transform: translateY(-2px);
}

.logo-container-premium:hover::before {
  opacity: 1;
}

.logo-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 15px;
  z-index: -1;
}

.logo-container-premium:hover .logo-glow-effect {
  opacity: 1;
}

.navbar-logo-premium {
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar-seo.scrolled .navbar-logo-premium {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.navbar-logo-wrapper-premium:hover .navbar-logo-premium {
  transform: scale(1.05);
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.2));
}

/* Logo Text - Eskişehir Yalıtım */
.logo-text-premium {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dynamic-header-color) !important;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-shadow: none;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.logo-container-premium:hover .logo-text-premium {
  color: var(--dynamic-accent-color) !important;
}

.navbar-seo.scrolled .logo-text-premium {
  font-size: 1.35rem;
}

/* Mobilde logo container'ı küçült */
@media (max-width: 991px) {
  .logo-container-premium {
    padding: 0.5rem 1rem;
    gap: 0.75rem;
  }
  
  .navbar-logo-premium {
    max-width: 120px;
  }
  
  .logo-text-premium {
    font-size: 1.1rem;
    margin-left: 0.25rem;
  }
  
  .navbar-seo.scrolled .logo-text-premium {
    font-size: 1rem;
  }
}

/* Mobil Logo Text */
.logo-text-premium-mobile {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dynamic-header-color) !important;
  white-space: nowrap;
  letter-spacing: 0.5px;
  margin-left: 0.5rem;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.logo-container-premium:hover .logo-text-premium-mobile {
  color: var(--dynamic-accent-color) !important;
}

@media (max-width: 768px) {
  .logo-text-premium {
    display: none !important; /* Mobilde gizle */
  }
  
  .logo-text-premium-mobile {
    display: inline-block !important; /* Mobilde göster */
  }
  
  .logo-container-premium {
    padding: 0.4rem 0.8rem;
    gap: 0.5rem;
  }
  
  .navbar-logo-premium {
    max-width: 100px;
  }
}

/* Nav Links */
.nav-link-seo {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem !important;
  margin: 0 0.25rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: none;
  letter-spacing: 0.3px;
}

.nav-link-seo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--accent-gradient);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link-seo:hover::before,
.nav-link-seo.active::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-link-seo:hover {
  color: var(--accent-orange) !important;
  transform: translateY(-2px);
}

.nav-link-seo span {
  position: relative;
  z-index: 1;
}

/* CTA Button */
.btn-navbar-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  background: var(--accent-gradient);
  color: white !important;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-navbar-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-navbar-cta:hover::before {
  width: 300px;
  height: 300px;
}

.btn-navbar-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
  color: white !important;
}

.btn-navbar-cta span {
  position: relative;
  z-index: 1;
}

/* Custom Toggler */
.custom-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent;
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon-custom {
  display: flex;
  flex-direction: column;
  width: 25px;
  height: 20px;
  justify-content: space-between;
}

.navbar-toggler-icon-custom span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navbar */
@media (max-width: 991.98px) {
  .navbar-seo {
    background: rgba(30, 58, 95, 0.99);
    padding: 1rem 0;
  }
  
  .navbar-collapse {
    background: rgba(30, 58, 95, 0.98);
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }
  
  .nav-link-seo {
    padding: 1rem 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-link-seo:last-child {
    border-bottom: none;
  }
  
  .btn-navbar-cta {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .navbar-top-bar {
    display: none;
  }
}

/* Navbar Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-seo {
  animation: slideDown 0.5s ease;
}

/* Performance Optimization */
.navbar-seo,
.nav-link-seo,
.btn-navbar-cta {
  will-change: transform;
}

.navbar-seo.scrolled {
  will-change: auto;
}

/* Enhanced Footer */
.footer-professional {
  position: relative;
  overflow: hidden;
}

.footer-professional::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

/* Enhanced Swiper */
.swiper-professional .swiper-slide {
  transition: all 0.4s ease;
}

.swiper-professional .swiper-slide-active {
  transform: scale(1.05);
  z-index: 2;
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Enhanced Tooltip */
.tooltip-professional {
  position: relative;
  cursor: help;
}

.tooltip-professional::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background: var(--steel-blue-dark);
  color: white;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  margin-bottom: 5px;
}

.tooltip-professional:hover::after {
  opacity: 1;
}

/* Enhanced Badge */
.badge-professional {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--steel-gradient);
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.badge-professional::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.badge-professional:hover::before {
  left: 100%;
}

/* Enhanced Section Title */
.section-title-professional {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title-professional::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
  
  .section-divider {
    margin: 2rem 0;
  }
}

/* Print Styles */
@media print {
  .back-to-top,
  .page-loader,
  .navbar-professional {
    display: none !important;
  }
}
.logo{
  height: 35px;
  width: 120px;
  object-fit: contain;
}

.hero_logo{
  aspect-ratio: 16/10;
}

.slider_img{
  aspect-ratio: 16/11;
  object-fit: cover;
}
.slider_ana{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/5;
  position: absolute;
  top: 0px;
  z-index: -1;
  filter: brightness(0.7);
}
.capture{
  display: flex;
  height: 450px;
  align-items: center;
  position: relative;
}
.over_slide::before{
 position: absolute;
  z-index: -1;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(26, 32, 44, 0.85) 100%);
  top: 0px;
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
}

.icon_hizmet{
  width: 50px;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 0;
}

.icon_sosyal{
  width: 25px;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 0;
}

:root {
  /* Profesyonel Kurumsal Renk Paleti - Yalıtım ve İnşaat Sektörü */
  --primary-color: #0066CC;
  --primary-dark: #004A8F;
  --primary-light: #3399FF;
  
  /* Yalıtım Mavisi - Güven ve Profesyonellik */
  --steel-blue: #0066CC;
  --steel-blue-dark: #004A8F;
  --steel-blue-light: #3399FF;
  
  /* Dark Gray - Endüstriyel ve Güçlü */
  --steel-dark: #1a202c;
  --steel-medium: #2d3748;
  --steel-light: #4a5568;
  --steel-lighter: #718096;
  
  /* Corporate Colors */
  --corporate-dark: #004A8F;
  --corporate-medium: #0066CC;
  --corporate-light: #3399FF;
  
  /* Accent Colors - Yalıtım Sektörüne Özel */
  --accent-green: #00A86B;
  --accent-orange: #FF8C00;
  --accent-gold: #FFB84D;
  
  /* Background Colors */
  --bg-light: #F5F7FA;
  --bg-white: #ffffff;
  --bg-gray: #f1f5f9;
  
  /* Gradients - Yalıtım Sektörüne Özel */
  --steel-gradient: linear-gradient(135deg, #0066CC 0%, #004A8F 100%);
  --accent-gradient: linear-gradient(135deg, #FF8C00 0%, #FFB84D 100%);
  --green-gradient: linear-gradient(135deg, #00A86B 0%, #008A5B 100%);
  --corporate-gradient: linear-gradient(135deg, #004A8F 0%, #0066CC 50%, #3399FF 100%);
  
  /* Shadows */
  --steel-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
  --steel-shadow-lg: 0 20px 50px rgba(0, 102, 204, 0.2);
  --accent-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.bg_sari {
  background-color: var(--accent-orange);
}
.c-sari {
  color: var(--accent-orange);
}

/* Kurumsal Renk Sınıfları */
.bg-corporate {
  background-color: var(--corporate-dark);
}

.bg-corporate-gradient {
  background: var(--corporate-gradient);
}

.text-corporate {
  color: var(--steel-blue-dark);
}

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

.text-steel-blue {
  color: var(--steel-blue);
}

/* Yalıtım Sektörü Renkleri */
.bg-steel-gradient {
  background: var(--steel-gradient);
}

.bg-accent-gradient {
  background: var(--accent-gradient);
}

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

.bg-steel-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
  border: 1px solid rgba(44, 82, 130, 0.1);
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.text-steel {
  color: var(--steel-dark);
}

.carausel_detay {
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
}

.bg_mavi {
  background-color: var(--steel-blue-dark);
}
.c_mavi {
  color: var(--steel-blue-dark);
}

.footer_color {
  background-color: var(--corporate-dark);
}

.a_icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.menu_link:hover {
  color: var(--accent-orange) !important;
  text-decoration: 450ms;
}

.slider_div {
  z-index: 5000;
  top: 50%;
  transform: translateY(-50%);
}
.swiper {
  width: 100%;
}

/* Mobile Card Sliders */
.projects-swiper,
.why-us-swiper,
.yapi-turleri-swiper,
.hizmetler-swiper,
.blog-swiper {
  padding-bottom: 50px;
}

/* Mobil slider wrapper'ları ortala */
@media (max-width: 767px) {
  .yapi-turleri-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }

  .yapi-turleri-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0 10px;
  }
  
  .yapi-turleri-swiper .swiper-slide > div {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* Mobilde hizmetler kartlarındaki iconları ortala */
  .hizmetler-swiper .service-icon-wrapper-modern,
  .service-card-modern .service-icon-wrapper-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .hizmetler-swiper .service-icon-bg-modern,
  .service-card-modern .service-icon-bg-modern {
    margin: 0 auto;
  }
}

.projects-swiper .swiper-slide,
.why-us-swiper .swiper-slide,
.yapi-turleri-swiper .swiper-slide,
.hizmetler-swiper .swiper-slide,
.blog-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.yapi-turleri-swiper .swiper-slide > div,
.hizmetler-swiper .swiper-slide > div,
.blog-swiper .swiper-slide > div {
  width: 100%;
  max-width: 100%;
}

.projects-swiper .swiper-pagination,
.why-us-swiper .swiper-pagination,
.yapi-turleri-swiper .swiper-pagination,
.hizmetler-swiper .swiper-pagination,
.blog-swiper .swiper-pagination {
  bottom: 0;
}

.projects-swiper .swiper-pagination-bullet,
.why-us-swiper .swiper-pagination-bullet,
.yapi-turleri-swiper .swiper-pagination-bullet,
.hizmetler-swiper .swiper-pagination-bullet,
.blog-swiper .swiper-pagination-bullet {
  background: var(--accent-orange);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.projects-swiper .swiper-pagination-bullet-active,
.why-us-swiper .swiper-pagination-bullet-active,
.yapi-turleri-swiper .swiper-pagination-bullet-active,
.hizmetler-swiper .swiper-pagination-bullet-active,
.blog-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-orange);
  width: 30px;
  border-radius: 5px;
}

/* Mobil Slider Navigation Butonları */
.projects-swiper .swiper-button-prev,
.projects-swiper .swiper-button-next,
.why-us-swiper .swiper-button-prev,
.why-us-swiper .swiper-button-next,
.yapi-turleri-swiper .swiper-button-prev,
.yapi-turleri-swiper .swiper-button-next,
.hizmetler-swiper .swiper-button-prev,
.hizmetler-swiper .swiper-button-next,
.blog-swiper .swiper-button-prev,
.blog-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(0, 102, 204, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.projects-swiper .swiper-button-prev::after,
.projects-swiper .swiper-button-next::after,
.why-us-swiper .swiper-button-prev::after,
.why-us-swiper .swiper-button-next::after,
.yapi-turleri-swiper .swiper-button-prev::after,
.yapi-turleri-swiper .swiper-button-next::after,
.hizmetler-swiper .swiper-button-prev::after,
.hizmetler-swiper .swiper-button-next::after,
.blog-swiper .swiper-button-prev::after,
.blog-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}

.projects-swiper .swiper-button-prev {
  left: 10px;
}

.projects-swiper .swiper-button-next {
  right: 10px;
}

.why-us-swiper .swiper-button-prev {
  left: 10px;
}

.why-us-swiper .swiper-button-next {
  right: 10px;
}

.yapi-turleri-swiper .swiper-button-prev {
  left: 10px;
}

.yapi-turleri-swiper .swiper-button-next {
  right: 10px;
}

.hizmetler-swiper .swiper-button-prev {
  left: 10px;
}

.hizmetler-swiper .swiper-button-next {
  right: 10px;
}

.blog-swiper .swiper-button-prev {
  left: 10px;
}

.blog-swiper .swiper-button-next {
  right: 10px;
}

.projects-swiper .swiper-button-prev:hover,
.projects-swiper .swiper-button-next:hover,
.why-us-swiper .swiper-button-prev:hover,
.why-us-swiper .swiper-button-next:hover,
.yapi-turleri-swiper .swiper-button-prev:hover,
.yapi-turleri-swiper .swiper-button-next:hover,
.hizmetler-swiper .swiper-button-prev:hover,
.hizmetler-swiper .swiper-button-next:hover,
.blog-swiper .swiper-button-prev:hover,
.blog-swiper .swiper-button-next:hover {
  background: var(--accent-orange);
  transform: translateY(-50%) scale(1.1);
}

/* Swipe Indicator */
.swipe-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  animation: swipeIndicatorPulse 2s ease-in-out infinite;
}

.swipe-indicator-content {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 204, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swipe-indicator-content svg {
  animation: swipeArrowMove 1.5s ease-in-out infinite;
}

.swipe-indicator.fade-out {
  animation: fadeOut 0.5s ease-out forwards;
}

@keyframes swipeIndicatorPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.95);
  }
}

@keyframes swipeArrowMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}

/* Desktop'ta navigation butonlarını gizle */
@media (min-width: 768px) {
  .projects-swiper .swiper-button-prev,
  .projects-swiper .swiper-button-next,
  .why-us-swiper .swiper-button-prev,
  .why-us-swiper .swiper-button-next,
  .yapi-turleri-swiper .swiper-button-prev,
  .yapi-turleri-swiper .swiper-button-next,
  .hizmetler-swiper .swiper-button-prev,
  .hizmetler-swiper .swiper-button-next,
  .blog-swiper .swiper-button-prev,
  .blog-swiper .swiper-button-next {
    display: none;
  }
}

.swiper-button-prev,
.swiper-button-next {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--steel-gradient);
  transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}

.slider-nav-prev,
.slider-nav-next {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider Content Styles */
.slider-container {
  min-height: 500px;
}

.slider-content {
  animation: fadeInUp 1s ease;
}

.slider-badge {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.slider-title {
  animation: fadeInUp 0.8s ease 0.4s both;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.slider-description {
  animation: fadeInUp 0.8s ease 0.6s both;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  font-size: 1.2rem;
}

.slider-buttons {
  animation: fadeInUp 0.8s ease 0.8s both;
}

.slider-buttons .btn {
  transition: all 0.3s ease;
}

.slider-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--steel-shadow-lg);
}

/* Kurumsal Buton Stilleri */
.btn-lg {
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.875rem 2rem;
}

.btn {
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(44, 82, 130, 0.25);
}

/* Modern Hero Section - Professional Design */
.hero-section-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #004A8F;
}

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

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

.hero-bg-image-modern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  animation: heroImageZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 74, 143, 0.85) 0%, rgba(0, 102, 204, 0.75) 50%, rgba(0, 168, 107, 0.85) 100%);
  z-index: 1;
}

.hero-bg-gradient-modern {
  width: 100%;
  height: 100%;
  background: var(--corporate-gradient);
}

.min-vh-90 {
  min-height: 90vh;
}

.hero-content-modern {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge-modern {
  display: inline-block;
}

.badge-modern-text {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-title-modern {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title-highlight {
  background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-top: 0.5rem;
}

.hero-description-modern {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta-modern {
  margin-top: 3rem;
}

.btn-hero-modern-primary {
  padding: 1rem 2.5rem;
  background: var(--accent-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-hero-modern-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 140, 0, 0.5);
  color: white;
}

.btn-hero-modern-secondary {
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Genel Metin İyileştirmeleri */
strong, b {
  font-weight: 700;
  color: #0f172a;
}

small {
  font-weight: 500;
  color: #475569;
}

li {
  font-weight: 500;
  color: #334155;
}

a {
  font-weight: 500;
}

.btn {
  font-weight: 600;
}

.btn-hero-modern-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
  color: white;
}

/* Trust Indicators */
.hero-trust-indicators {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  border-color: rgba(255, 167, 38, 0.3);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-text strong {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* Scroll Indicator Modern */
.hero-scroll-indicator-modern {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounceVertical 2s ease-in-out infinite;
}

.scroll-indicator-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.scroll-indicator-link:hover {
  color: white;
}

.scroll-indicator-icon {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.scroll-indicator-link:hover .scroll-indicator-icon {
  border-color: var(--accent-orange);
  background: rgba(230, 126, 34, 0.2);
}

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

/* Featured Projects Section */
.featured-projects-section {
  position: relative;
}

.featured-project-card {
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.featured-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(230, 126, 34, 0.2);
}

.project-image-modern {
  overflow: hidden;
  position: relative;
}

.project-overlay-modern {
  background: linear-gradient(135deg, rgba(44, 82, 130, 0.95) 0%, rgba(30, 58, 95, 0.95) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

.featured-project-card:hover .project-overlay-modern {
  opacity: 1;
}

.project-link-modern {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  text-decoration: none;
}

.project-link-modern:hover {
  transform: scale(1.1) rotate(90deg);
}

.project-link-modern .arrow-icon-svg {
  transition: transform 0.4s ease;
}

.project-link-modern:hover .arrow-icon-svg {
  transform: translateX(3px);
}

.project-badge-modern {
  z-index: 3;
  opacity: 0;
  transition: all 0.4s ease;
}

.featured-project-card:hover .project-badge-modern {
  opacity: 1;
}

.featured-project-card h3 a {
  transition: all 0.3s ease;
}

.featured-project-card:hover h3 a {
  color: var(--accent-orange) !important;
}

/* Responsive Modern Hero */
@media (max-width: 768px) {
  .hero-title-modern {
    font-size: 2rem;
  }
  
  .hero-description-modern {
    font-size: 1rem;
  }
  
  .btn-hero-modern-primary,
  .btn-hero-modern-secondary {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .trust-item {
    padding: 1rem;
  }
  
  .trust-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Hero Section Styles */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.min-vh-75 {
  min-height: 75vh;
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-bg-gradient {
  width: 100%;
  height: 100%;
  background: var(--corporate-gradient);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 74, 143, 0.9) 0%, rgba(0, 102, 204, 0.85) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  animation: fadeInUp 0.8s ease 0.2s both;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hero-title {
  animation: fadeInUp 0.8s ease 0.4s both;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-description {
  animation: fadeInUp 0.8s ease 0.6s both;
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-features {
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-feature-item {
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  }

.hero-cta-buttons {
  animation: fadeInUp 0.8s ease 1s both;
}

.btn-hero-primary {
  background: var(--accent-gradient);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--accent-shadow);
  color: white;
}

.btn-hero-secondary {
  background: white;
  color: var(--steel-blue-dark);
  border: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: var(--steel-blue-light);
  color: white;
  transform: translateY(-3px);
}

.btn-hero-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: white;
  color: var(--steel-blue-dark);
  transform: translateY(-3px);
}

.hero-stats-wrapper {
  animation: fadeInUp 0.8s ease 1.2s both;
}

.hero-stat-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.hero-stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-orange);
  box-shadow: var(--steel-shadow-lg);
}

.stat-icon-circle {
  width: 70px;
  height: 70px;
  transition: all 0.4s ease;
}

.hero-stat-card:hover .stat-icon-circle {
  transform: scale(1.1) rotate(5deg);
}

.stat-number {
  font-size: 3rem;
  line-height: 1;
}

.hero-scroll-indicator {
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  transform: translateY(5px);
}

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

/* Footer Styles */
.footer-main {
  background: var(--corporate-dark);
  position: relative;
  overflow: hidden;
}

.footer-pattern {
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
  pointer-events: none;
  z-index: 0;
}

.footer-top {
  position: relative;
  z-index: 1;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.footer-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: inline-block;
  text-align: center;
}

.footer-logo img,
.footer-logo-img {
  transition: all 0.3s ease;
  max-width: 110px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.footer-logo:hover img,
.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-description {
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--accent-gradient);
  transform: translateY(-5px);
  box-shadow: var(--accent-shadow);
}

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

.footer-link {
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: var(--accent-orange) !important;
  transform: translateX(5px);
}

.footer-link i {
  transition: all 0.3s ease;
}

.footer-link:hover i {
  color: var(--accent-orange);
}

.footer-contact li {
  transition: all 0.3s ease;
}

.footer-contact li:hover {
  transform: translateX(5px);
}

.footer-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-contact a {
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent-orange) !important;
}

.btn-accent-gradient {
  background: var(--accent-gradient);
  border: none;
  transition: all 0.3s ease;
}

.btn-accent-gradient:hover {
  transform: translateY(-3px);
  box-shadow: var(--accent-shadow);
  color: white;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
  line-height: 1.8;
}

.footer-bottom .gap-2 > * {
  margin: 0 4px;
}

@media (max-width: 767px) {
  /* Footer içeriklerini mobilde ortalama */
  .footer-widget {
    text-align: center !important;
  }
  
  .footer-title {
    text-align: center !important;
  }
  
  .footer-title::after {
    left: 50% !important;
    transform: translateX(-50%);
  }
  
  .footer-description {
    text-align: center !important;
  }
  
  .footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-social ul {
    justify-content: center !important;
  }
  
  .footer-links {
    text-align: center !important;
  }
  
  .footer-link {
    justify-content: center !important;
  }
  
  .footer-contact {
    text-align: center !important;
  }
  
  .footer-contact li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-icon-wrapper {
    margin: 0 auto 0.5rem auto !important;
  }
  
  .footer-cta {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: center !important;
  }
  
  .footer-bottom .gap-2 > * {
    margin: 2px 0;
  }
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-description {
    font-size: 1rem !important;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .hero-cta-buttons .btn {
    width: 100%;
  }
  
  .stat-number {
    font-size: 2rem !important;
  }
}

/* Page Hero (About, Contact etc.) */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #004A8F 0%, #0066CC 50%, #00A86B 100%);
  padding: 60px 0;
}

.min-vh-50 {
  min-height: auto;
}

.page-hero-bg {
  top: 0;
  left: 0;
  z-index: 0;
}

.page-hero-bg img {
  filter: brightness(0.15);
  opacity: 0.25;
}

.page-hero-overlay {
  background: linear-gradient(135deg, rgba(0, 74, 143, 0.98) 0%, rgba(0, 102, 204, 0.96) 50%, rgba(0, 168, 107, 0.94) 100%);
  z-index: 1 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
}

.page-hero-content {
  position: relative;
  z-index: 2 !important;
  animation: fadeInUp 1s ease;
}

.page-hero-content h1,
.page-hero-content .page-hero-title {
  color: #ffffff !important;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
  font-weight: 800;
}

.page-hero-content p,
.page-hero-content .page-hero-description {
  color: #ffffff !important;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.page-hero-content .text-white-50 {
  color: rgba(255, 255, 255, 0.98) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.page-hero-badge {
  animation: fadeInUp 0.8s ease 0.2s both;
  font-size: 0.9rem;
  letter-spacing: 1px;
  background: rgba(255, 140, 0, 0.9) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-hero-title {
  animation: fadeInUp 0.8s ease 0.4s both;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  color: #ffffff;
  font-weight: 800;
}

.page-hero-description {
  animation: fadeInUp 0.8s ease 0.6s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-weight: 400;
}

/* About Content Styles */
.about-content-wrapper {
  animation: fadeInUp 0.8s ease;
}

.about-title {
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-content {
  font-size: 1.1rem;
  line-height: 1.9;
}

.about-content h2,
.about-content h3 {
  color: var(--steel-blue-dark);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

.about-content li {
  margin-bottom: 0.75rem;
}

.about-image-wrapper {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.about-image-overlay {
  background: linear-gradient(135deg, rgba(44, 82, 130, 0.1) 0%, rgba(30, 58, 95, 0.1) 100%);
  border-radius: 1.5rem;
  pointer-events: none;
}

.about-badge {
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Mission & Vision Cards */
.mission-vision-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-orange);
  box-shadow: var(--steel-shadow-lg);
}

.mv-icon-circle {
  width: 80px;
  height: 80px;
  transition: all 0.4s ease;
}

.mission-vision-card:hover .mv-icon-circle {
  transform: scale(1.1) rotate(5deg);
}

.mission-vision-card ul li {
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.mission-vision-card:hover ul li {
  transform: translateX(5px);
}

.mission-vision-card ul i {
  transition: all 0.3s ease;
}

.mission-vision-card:hover ul i {
  transform: scale(1.2);
}

/* Statistics Section */
.stats-pattern {
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
  pointer-events: none;
  z-index: 0;
}

.stat-card-about {
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

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

.stat-icon-about {
  transition: all 0.4s ease;
}

.stat-card-about:hover .stat-icon-about {
  transform: scale(1.1) rotate(5deg);
}

.stat-number-about {
  font-size: 3.5rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.stat-card-about:hover .stat-number-about {
  color: var(--accent-orange);
}

/* About Content Typography */
.about-content h2 {
  font-size: 2rem;
  color: var(--steel-blue-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-content h3 {
  font-size: 1.5rem;
  color: var(--steel-blue);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.about-content strong {
  color: var(--steel-blue-dark);
  font-weight: 600;
}

/* Quick Stats */
.quick-stat-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.quick-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--steel-blue);
  box-shadow: var(--steel-shadow);
}

/* Value Cards */
.value-card {
  transition: all 0.4s ease;
}

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

.value-icon {
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Timeline Styles */
.timeline-wrapper {
  position: relative;
}

.timeline-item {
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--steel-shadow);
  transition: all 0.4s ease;
  height: 100%;
}

.timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--steel-shadow-lg);
}

.timeline-year {
  width: 80px;
  height: 80px;
  font-size: 1.2rem;
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-year {
  transform: scale(1.1) rotate(5deg);
}

/* Certificate Cards */
.certificate-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.certificate-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-orange);
  box-shadow: var(--steel-shadow-lg);
}

.certificate-icon {
  transition: all 0.4s ease;
}

.certificate-card:hover .certificate-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Progress Bars */
.stat-progress-bar {
  border-radius: 0 0 0.5rem 0.5rem;
  overflow: hidden;
}

.stat-progress-fill {
  transition: width 1s ease;
  border-radius: 0 0 0.5rem 0.5rem;
}

.stat-card-about:hover .stat-progress-fill {
  animation: progressFill 1s ease;
}

@keyframes progressFill {
  from {
    width: 0;
  }
}

/* About Image Badges */
.about-badge {
  animation: fadeInUp 0.8s ease;
}

.about-image-wrapper:hover .about-badge {
  animation: pulse 1s ease infinite;
}

/* Layout Improvements */
section {
  padding: 5rem 0;
}

section.bg-light {
  padding: 5rem 0;
}

/* Better Spacing */
.about-content-wrapper {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .about-content-wrapper {
    padding-right: 0;
  }
}

/* Image Gallery Style */
.about-image-wrapper {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 82, 130, 0.1) 0%, rgba(30, 58, 95, 0.1) 100%);
  border-radius: 1.5rem;
  z-index: 1;
  pointer-events: none;
}

/* Responsive About Page */
@media (max-width: 768px) {
  .page-hero {
    min-height: 50vh;
  }
  
  .page-hero-title {
    font-size: 2rem !important;
  }
  
  .about-title {
    font-size: 2rem !important;
  }
  
  .stat-number-about {
    font-size: 2.5rem !important;
  }
  
  .mission-vision-card {
    margin-bottom: 2rem;
  }
  
  .timeline-item {
    margin-bottom: 2rem;
  }
  
  .certificate-card {
    margin-bottom: 1.5rem;
  }
  
  .value-card {
    margin-bottom: 1.5rem;
  }
  
  .about-badge {
    position: relative !important;
    margin: 1rem 0 !important;
  }
  
  section {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 768px) {
  .slider-container {
    min-height: 400px;
  }
  
  .slider-title {
    font-size: 2rem !important;
    width: 100% !important;
  }
  
  .slider-description {
    width: 100% !important;
    font-size: 1rem !important;
  }
  
  .slider-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .slider-buttons .btn {
    width: 100%;
  }
  
  .hero-title {
    font-size: 2rem !important;
  }
  
  .stat-card {
    margin-bottom: 1rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .project-card {
    margin-bottom: 1.5rem;
  }
  
  .structure-type-card {
    margin-bottom: 1.5rem;
  }
  
  .service-detail-card {
    margin-bottom: 1.5rem;
  }
  
  .structure-image {
    height: 200px !important;
  }
}

.hakkimizda {
  width: 100%;
  height: auto;
}

.swiper-slide {
  cursor: pointer;
}

.hizmet_eft:hover {
  transform: translateY(-10px);
  box-shadow: var(--steel-shadow);
  transition: all 0.4s ease;
  border-color: transparent !important;
}

.hizmet_eft:hover span,
.hizmet_eft:hover h3 {
  color: var(--accent-orange);
  transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  background: var(--steel-gradient);
  color: white;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
}

.feature-item {
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: rgba(230, 126, 34, 0.1);
  transform: translateX(5px);
}

.feature-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--steel-gradient);
  flex-shrink: 0;
}

.stat-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
  box-shadow: var(--steel-shadow);
}

.stat-icon {
  animation: pulse 2s infinite;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.steel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 82, 130, 0.1) 0%, rgba(30, 58, 95, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Service Cards - Ferah Tasarım */
.service-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 2rem !important;
}

.service-card h3,
.service-card h4 {
  font-weight: 800;
  color: #0f172a;
}

.service-card p {
  font-weight: 500;
  color: #334155;
  line-height: 1.8;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 82, 130, 0.03) 0%, rgba(30, 58, 95, 0.03) 100%);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  background: #fafbfc;
  border-color: rgba(230, 126, 34, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

.service-icon-wrapper {
  position: relative;
}

.service-icon-bg {
  width: 70px;
  height: 70px;
  background: var(--steel-gradient);
  box-shadow: 0 4px 15px rgba(44, 82, 130, 0.15);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-bg {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(44, 82, 130, 0.25);
}

.service-link {
  transition: all 0.3s ease;
}

.service-card:hover .service-link {
  transform: translateX(5px);
}

/* Project Cards - Ferah Tasarım */
.project-card {
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(230, 126, 34, 0.15);
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
}

.project-image {
  transition: transform 0.5s ease;
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 82, 130, 0.95) 0%, rgba(30, 58, 95, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-title {
  transition: color 0.3s ease;
  font-weight: 800;
  color: #0f172a;
}

.project-card:hover .project-title {
  color: var(--accent-orange) !important;
}

.project-content {
  font-weight: 500;
  color: #475569;
  line-height: 1.8;
}

.featured-project-card h3 {
  font-weight: 800;
  color: #0f172a;
}

.featured-project-card h3 a {
  font-weight: 800;
  color: #0f172a;
}

.featured-project-card p {
  font-weight: 500;
  color: #475569;
  line-height: 1.8;
}

/* Section Badge */
.section-badge {
  background: var(--steel-gradient);
  color: white;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(44, 82, 130, 0.2);
}

/* Background Pattern */
.steel-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(44, 82, 130, 0.02) 10px, rgba(44, 82, 130, 0.02) 20px);
  pointer-events: none;
}

/* Button Styles */
.btn-outline-steel {
  border: 2px solid var(--steel-blue);
  color: var(--steel-blue-dark);
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-outline-steel:hover {
  background: var(--steel-gradient);
  border-color: var(--steel-blue);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--steel-shadow);
}

/* Why Us Cards - Ferah Tasarım */
.why-us-card {
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  padding: 2.5rem 2rem !important;
}

.why-us-card h4 {
  font-weight: 800;
  color: #0f172a;
  font-size: 1.25rem;
}

.why-us-card p {
  font-weight: 500;
  color: #334155;
  line-height: 1.8;
}

.why-us-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 126, 34, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
  background: #fafbfc;
}

.icon-circle {
  width: 80px;
  height: 80px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(44, 82, 130, 0.15);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
}

.why-us-icon {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.icon-circle i,
.icon-circle .fa-solid,
.icon-circle .fa {
  display: inline-block !important;
  line-height: 1 !important;
  font-size: 2rem !important;
  width: auto !important;
  height: auto !important;
}

.why-us-card:hover .icon-circle {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(44, 82, 130, 0.2);
}

/* Structure Type Cards - Ferah Tasarım */
.structure-type-card {
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  overflow: hidden;
}

.structure-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(230, 126, 34, 0.2);
}

.structure-image-wrapper {
  position: relative;
  overflow: hidden;
}

.structure-image {
  transition: transform 0.6s ease;
}

.structure-type-card:hover .structure-image {
  transform: scale(1.15);
}

.structure-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.structure-type-card:hover .structure-overlay {
  opacity: 1;
}

.structure-badge {
  transform: translateY(20px);
  transition: transform 0.4s ease;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.structure-type-card:hover .structure-badge {
  transform: translateY(0);
  background: var(--accent-gradient) !important;
}

.structure-list li {
  transition: all 0.3s ease;
  padding: 0.6rem 0;
  line-height: 1.8;
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
}

.structure-type-card:hover .structure-list li {
  transform: translateX(5px);
}

.structure-list i {
  transition: transform 0.3s ease;
}

.structure-type-card:hover .structure-list i {
  transform: scale(1.2);
  color: var(--accent-orange);
}

/* Service Detail Cards */
.service-detail-card {
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--steel-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 8px;
  z-index: -1;
}

.service-detail-card:hover::before {
  opacity: 0.2;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 126, 34, 0.5);
  box-shadow: var(--accent-shadow);
}

.service-detail-icon {
  transition: all 0.4s ease;
}

.service-detail-card:hover .service-detail-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-detail-card:hover h3 {
  color: var(--accent-orange);
  transition: color 0.3s ease;
}

/* Activity Cards (Faaliyet Alanları) - Ferah Tasarım */
.activity-card {
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  padding: 3rem 2.5rem !important;
  position: relative;
  overflow: visible;
}

.activity-card h2 {
  font-weight: 900;
  color: #0f172a;
  font-size: 1.75rem;
}

.activity-card p {
  font-weight: 500;
  color: #1e293b;
  line-height: 1.8;
  font-size: 1rem;
}

.activity-list li {
  font-weight: 500;
  color: #334155;
}

.activity-list li span {
  font-weight: 500;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 4px 4px 0 0;
}

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

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  background: #fafbfc;
  border-color: rgba(230, 126, 34, 0.15);
}

.activity-icon {
  position: relative;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(44, 82, 130, 0.15);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
}

.icon-wrapper i,
.icon-wrapper .fa-solid,
.icon-wrapper .fa {
  display: inline-block !important;
  line-height: 1 !important;
  font-size: 2rem !important;
  width: auto !important;
  height: auto !important;
}

.activity-card:hover .icon-wrapper {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(44, 82, 130, 0.2);
}

.activity-list li {
  transition: all 0.3s ease;
  padding-left: 0;
}

.activity-list li:hover {
  transform: translateX(5px);
  color: var(--steel-dark);
}

.activity-list .check-icon-svg {
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.activity-list li:hover .check-icon-svg {
  transform: scale(1.15);
}

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

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

/* Advantage Cards */
.advantage-card {
  transition: all 0.4s ease;
  cursor: pointer;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}

.advantage-image {
  transition: transform 0.6s ease;
}

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

.advantage-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  z-index: 1;
}

.advantage-content {
  z-index: 2;
}

.advantage-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.advantage-card:hover .advantage-arrow {
  opacity: 1;
  transform: translateX(5px);
  color: var(--accent-orange);
}

/* FAQ Accordion */
.accordion-faq .accordion-button {
  background-color: white;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  box-shadow: none;
}

.accordion-faq .accordion-button:not(.collapsed) {
  background-color: white;
  color: var(--steel-dark);
  box-shadow: none;
}

.accordion-faq .accordion-button:not(.collapsed) i.fa-minus {
  display: inline-block;
}

.accordion-faq .accordion-button:not(.collapsed) i.fa-plus {
  display: none;
}

.accordion-faq .accordion-button.collapsed i.fa-minus {
  display: none;
}

.accordion-faq .accordion-button.collapsed i.fa-plus {
  display: inline-block;
}

.accordion-faq .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25);
  border-color: var(--accent-orange);
}

.accordion-faq .accordion-body {
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-top: 2px solid var(--accent-orange);
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.8;
}

.accordion-faq .accordion-item {
  transition: all 0.3s ease;
}

.accordion-faq .accordion-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.columcunt {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.blog {
  height: auto;
}

.bg_hizmet {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(44, 82, 130, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 58, 95, 0.05) 0%, transparent 50%);
  background-size: cover;
  background-position: center center;
  position: relative;
}

.blog .swiper-slide {
  cursor: context-menu;
}

/* Modern FAQ Grid Styles */
.faq-search-wrapper {
  position: relative;
}

.faq-search-wrapper input {
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.faq-search-wrapper input:focus {
  border-color: var(--steel-blue-dark);
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.1);
}

.faq-card-modern {
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
  border-color: var(--steel-blue-dark) !important;
}

.faq-card-modern:hover .faq-question {
  color: var(--accent-orange) !important;
}

.faq-number-badge {
  z-index: 1;
}

.faq-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-icon-wrapper .icon-circle {
  margin: 0 auto;
}

.faq-question {
  transition: color 0.3s ease;
}

.faq-toggle-btn {
  transition: all 0.3s ease;
}

.faq-toggle-btn:hover {
  transform: translateX(3px);
}

.faq-item {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

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

@media (max-width: 768px) {
  .faq-card-modern {
    min-height: auto;
  }
  
  .faq-question {
    min-height: auto !important;
  }
}

/* Blog kartlarında logo kullanıldığında büyümesin, bozulmasın */
.blog-img-logo {
  max-width: 180px !important;
  max-height: 100px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}
/* Blog detay sayfası featured image'da logo */
.featured-img-logo {
  max-width: 260px !important;
  max-height: 140px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}
@media (max-width: 768px) {
  .blog-img-logo {
    max-width: 150px !important;
    max-height: 80px !important;
  }
  .featured-img-logo {
    max-width: 200px !important;
    max-height: 110px !important;
  }
}
