/* 
 * Style2.css - Ana CSS dosyası
 * Bu dosya projenin ana stil tanımlarını içerir
 */

/* Temel değişkenler - Dinamik Yönetim İçin */
:root {
  /* Ana Marka Renkleri - Dinamik olarak view.php'den yüklenir */
  
  /* Metin Renkleri */
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --text-white: #fff;
  --text-white-transparent: rgba(255, 255, 255, 0.8);
  --text-white-transparent-light: rgba(255, 255, 255, 0.6);
  --accent-color: #686b7c;

  /* Arka Plan Renkleri */
  --background-color: #fff;
  --background-light: #f8f9fa;
  --background-lighter: #f9f9f9;
  /* --background-dark dinamik olarak view.php'den yüklenir */
  --background-gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --background-gradient-secondary: linear-gradient(45deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
  
  /* Header Renkleri */
  --header-bg: transparent;
  --header-shadow: rgba(0, 0, 0, 0.1);
  --header-shadow-dark: rgba(0, 0, 0, 0.15);
  --header-border: #ddd;
  
  /* Border Renkleri */
  --border-color: #ddd;
  --border-light: #e1e5e9;
  --border-lighter: #eee;
  --border-transparent: rgba(0, 0, 0, 0.05);
  --border-transparent-light: rgba(0, 0, 0, 0.1);
  
  /* Overlay ve Shadow Renkleri */
  --overlay-dark: rgba(0, 0, 0, 0.7);
  --overlay-light: rgba(0, 0, 0, 0.25);
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.15);
  --shadow-brand: rgba(57, 49, 133, 0.2);
  --shadow-brand-light: rgba(57, 49, 133, 0.1);
  --shadow-brand-medium: rgba(57, 49, 133, 0.3);
  
  /* Gradient Renkleri */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-secondary: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  --gradient-light: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  --gradient-text: linear-gradient(45deg, #ffffff, #e3f2fd);
  --gradient-footer-title: linear-gradient(90deg, #ee3131, #ff6b6b);
  
  /* Hover ve Active Renkleri */
  --hover-bg-light: rgba(57, 49, 133, 0.05);
  --hover-bg-medium: rgba(57, 49, 133, 0.08);
  --hover-bg-dark: rgba(57, 49, 133, 0.1);
  --hover-text: var(--primary-color);
  --active-bg: var(--primary-color);
  --active-text: var(--text-white);
  
  /* Özel Renkler */
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
  --info-color: #17a2b8;
  
  /* Footer Renkleri */
  --footer-bg: var(--background-gradient-dark);
  --footer-text: var(--text-white);
  --footer-text-transparent: var(--text-white-transparent);
  --footer-border: rgba(255, 255, 255, 0.1);
  --footer-social-bg: rgba(255, 255, 255, 0.1);
  --footer-social-hover: rgba(255, 255, 255, 0.2);
  
  /* Form Renkleri */
  --form-bg: var(--background-light);
  --form-border: var(--border-light);
  --form-focus-border: var(--primary-color);
  --form-focus-shadow: rgba(57, 49, 133, 0.1);
  
  /* Button Renkleri */
  --btn-primary-bg: transparent;
  --btn-primary-border: var(--primary-color);
  --btn-primary-text: var(--primary-color);
  --btn-primary-hover-bg: var(--text-white);
  --btn-secondary-bg: transparent;
  --btn-secondary-border: var(--secondary-color);
  --btn-secondary-text: var(--secondary-color);
  --btn-secondary-hover-bg: var(--text-white);
  
  /* Dropdown Renkleri */
  --dropdown-bg: rgba(255, 255, 255, 0.98);
  --dropdown-border: var(--border-color);
  --dropdown-shadow: var(--shadow-dark);
  --dropdown-hover-bg: var(--hover-bg-light);
  --dropdown-hover-text: var(--primary-color);
  
  /* Mobile Menu Renkleri */
  --mobile-menu-bg: var(--text-white);
  --mobile-menu-overlay: var(--overlay-dark);
  --mobile-menu-shadow: var(--overlay-light);
  --mobile-menu-border: var(--border-lighter);
  
  /* Corporate Page Renkleri */
  --corporate-banner-bg: var(--background-gradient-primary);
  --corporate-content-bg: var(--text-white);
  --corporate-text-color: #2d3748;
  --corporate-text-light: #4a5568;
  --corporate-shadow: var(--shadow-light);
  
  /* Contact Page Renkleri */
  --contact-banner-bg: var(--background-gradient-primary);
  --contact-content-bg: var(--background-light);
  --contact-card-bg: var(--text-white);
  --contact-icon-bg: var(--background-gradient-primary);
  --contact-form-bg: var(--form-bg);
  
  /* Product Page Renkleri */
  --product-image-bg: var(--background-gradient-primary);
  --product-feature-color: #555;
  --product-shadow: var(--shadow-medium);
  
  /* Animation Renkleri */
  --animation-shimmer: rgba(255, 255, 255, 0.1);
  --animation-float: rgba(255, 255, 255, 0.1);
}

/* Özel stiller buraya eklenecek */

/* Scroll Control - Hybrid sistem: Normal scroll + Custom slide navigation */
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Avenir Next LT Pro', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* Ana Container - Slideshow Yapısı */
.main-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
}


/* Slideshow Container - Hybrid Scroll System */
.slideshow-container {
  display: block; /* flex yerine block */
  width: 100%;
  margin-top: 0px; /* Masaüstü için */
}


/* Sticky durumda margin ayarı - animasyonlu geçiş */
body.sticky-active .slideshow-container {
  margin-top: 0px; /* Sticky header için daha az boşluk */
  transition: margin-top 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* UIKit Slider Integration - Her Section İçinde */
.section .uk-slider {
  width: 100%;
  height: 100vh;
}

.section .uk-slider-container {
  height: 100vh;
}

.section .uk-slider-items {
  height: 100vh;
}

.section .uk-slider-items > li {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
}



.section .uk-slidenav-previous {
  left: 2rem;
}

.section .uk-slidenav-next {
  right: 2rem;
}

/* UIKit Slider Item Styling */
.uk-slider-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Parallax Background Effect */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

/* Gradient Overlays */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gradient-primary {
  background: var(--background-gradient-primary);
}

.gradient-secondary {
  background: var(--background-gradient-secondary);
}

/* Animated Background Shapes */
.bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.bg-shapes::before,
.bg-shapes::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--animation-float);
  animation: float 6s ease-in-out infinite;
}

.bg-shapes::before {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.bg-shapes::after {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Metropolis', 'Karu', sans-serif;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 3.8rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  color: var(--primary-color);
  font-weight: 300;
  font-family: 'Avenir Next LT Pro', 'Metropolis', sans-serif;
  letter-spacing: 0.5px;
  animation: slideInUp 1s ease-out 0.5s both;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  opacity: 0.9;
  color: var(--text-light);
  margin-bottom: 3rem;
  animation: slideInUp 1s ease-out 1s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 1.5s both;
}

.hero-btn {
  border-radius: 24px;
  min-height: 48px;
  transition: all .5s ease;
  width: auto;
  font-weight: 600;
  font-family: 'Metropolis Semi', 'Avenir Next LT Pro', sans-serif;
  background-color: transparent;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 2em;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.hero-btn-primary {
  border: solid 1px var(--btn-primary-border);
  color: var(--btn-primary-text);
}

.hero-btn-primary:hover {
  background-color: var(--btn-primary-hover-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-brand);
  text-decoration: none;
}

.hero-btn-secondary {
  border: solid 1px var(--btn-secondary-border);
  color: var(--btn-secondary-text);
}

.hero-btn-secondary:hover {
  background-color: var(--btn-secondary-hover-bg);
  color: var(--btn-secondary-text);
  border-color: var(--btn-secondary-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-brand);
  text-decoration: none;
}

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

/* Ürün Section Stilleri - Tek Ürün Odaklı */
.product-section {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-hero {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-content {
  text-align: left;
}

.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Metropolis', 'Karu', sans-serif;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-weight: 600;
  font-family: 'Metropolis Semi', 'Avenir Next LT Pro', sans-serif;
  letter-spacing: 0.3px;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}

.product-features li {
  padding: 1rem 0;
  color: var(--product-feature-color);
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-transparent);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.product-image-large {
  width: 400px;
  height: 400px;
  background: var(--product-image-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
  box-shadow: 0 20px 60px var(--shadow-brand-medium);
}

.product-image-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.product-section:hover .product-image-large::before {
  transform: translateX(100%);
}

.product-section:hover .product-image-large {
  transform: scale(1.05) rotate(3deg);
}

/* Product Gallery Styles */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.gallery-item {
  background: var(--text-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-medium);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-dark);
}

.gallery-image {
  width: 100%;
  height: 300px;
  background: var(--product-image-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.gallery-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-light);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image::before {
  transform: translateX(100%);
}

.gallery-content {
  padding: 1.5rem;
}

.gallery-title {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Metropolis Semi', 'Avenir Next LT Pro', sans-serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: 0.2px;
}

.gallery-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.product-btn {
  margin-top: 2em;
  border-radius: 24px;
  border: solid 1px var(--btn-primary-border);
  min-height: 48px;
  color: var(--btn-primary-text);
  transition: all .5s ease;
  width: auto;
  font-weight: 600;
  font-family: 'Metropolis Semi', 'Avenir Next LT Pro', sans-serif;
  background-color: var(--btn-primary-bg);
  margin-bottom: 2em;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 2em;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.product-btn:hover {
  background-color: var(--btn-primary-hover-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-brand);
  text-decoration: none;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(57, 49, 133, 0.8);
  color: var(--text-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
}

.slider-nav:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev {
  left: -25px;
}

.slider-nav-next {
  right: -25px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(57, 49, 133, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.uk-active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Footer Section */
.footer-section {
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-white);
}

.footer-content {
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.footer-title {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Metropolis', 'Karu', sans-serif;
  margin-bottom: 2rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.footer-description {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  display: block;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: #e3f2fd;
  transform: translateY(-2px);
}

/* Scroll Navigation */
.scroll-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1 !important;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.scroll-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(57, 49, 133, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.scroll-dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(57, 49, 133, 0.5);
}

.scroll-dot:hover {
  background: var(--secondary-color);
  transform: scale(1.2);
}

/* Navigation Arrows */
.nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background: rgba(57, 49, 133, 0.8);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.nav-arrow:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow-prev {
  left: 2rem;
}

.nav-arrow-next {
  right: 6rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

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

/* Responsive Tasarım */
@media (max-width: 1200px) {
  .product-card {
    min-width: 320px;
  }
  
  .slider-nav-prev {
    left: -20px;
  }
  
  .slider-nav-next {
    right: -20px;
  }
}


@media (max-width: 960px) {
  .hero-title {
    font-size: 1rem;
    letter-spacing: -0.01em;
  }
  
  .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 0.3px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .hero-buttons {
    align-items: center;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .product-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .product-content {
    text-align: center;
  }
  
  .product-image-large {
    width: 300px;
    height: 300px;
    font-size: 6rem;
  }
  
  .footer-title {
    font-size: 2.2rem;
  }
  
  .footer-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-contact {
    flex-direction: column;
    gap: 1rem;
  }
  
  .scroll-nav {
    right: 1rem;
  }
  
  .nav-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .nav-arrow-prev {
    left: 1rem;
  }
  
  .nav-arrow-next {
    right: 4rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .product-card {
    min-width: 250px;
    padding: 2rem 1.5rem;
  }
  
  .product-image {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .footer-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* ==========================================
   HEADER & NAVIGATION STYLES
   ========================================== */

/* Ana Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  /* backdrop-filter: blur(10px); */
  /* box-shadow: 0 2px 20px var(--header-shadow); */
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); /* Daha yumuşak geçiş */
}

/* Header Top - Logo, Arama, Dil */
.header-top {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
  max-height: 80px;
  overflow: hidden;
}

.header-logo .logo-img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

/* Arama Kutusu */
.header-search {
  margin-right: 20px;
}

.header-search .uk-search {
  position: relative;
}

.header-search .uk-search-input {
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 8px 40px 8px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
}

.header-search .uk-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(57, 49, 133, 0.1);
}

.header-search .uk-search-icon-flip {
  color: var(--primary-color);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
}

/* Dil Seçimi */
.header-langs {
  display: flex;
  gap: 5px;
}

.lang-link {
  padding: 0px;
  border: 3px solid var(--border-color);
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.lang-link:hover,
.lang-link.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  text-decoration: none;
  box-shadow: 0 2px 8px var(--primary-color);
}

/* Header Bottom - Ana Menü */
.header-bottom {
  padding: 10px 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0 20px;
}

.nav-link {
  display: block;
  font-family: "Avenir Next World", sans-serif;
  padding: 12px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(57, 49, 133, 0.1);
  color: var(--secondary-color);
  text-decoration: none;
  transform: translateY(-2px);
}

.nav-link.active {
  background: var(--primary-color);
  color: white;
}

/* Sticky Header - Scroll sonrası TEK SATIRDA */
.main-header.sticky {
  padding: 0;
  background: var(--primary-color) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Üst bar animasyonlu geçiş ile gizle */
.main-header.sticky .header-top {
  max-height: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(-100%);
}

/* Alt bar tek satır olarak düzenle - animasyonlu geçiş */
.main-header.sticky .header-bottom {
  padding: 0px 0;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.sticky .header-bottom .uk-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Normal menüyü gizle */
.main-header.sticky .main-nav {
  display: none;
}

/* Sticky content göster - TEK SATIR LAYOUT - animasyonlu geçiş */
.main-header.sticky .sticky-content {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sticky olmadan önce sticky content gizli */
.sticky-content {
  opacity: 0;
  transform: translateY(20px);
}

/* Sol: Logo */
.main-header.sticky .sticky-content .header-logo {
  flex-shrink: 0;
  background-color: #ffffff;
  padding: 15px 60px;
  border-radius: 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: -1px;
}

.main-header.sticky .sticky-content .header-logo .logo-img {
  height: 40px;
  width: auto;
}

/* Orta: Menü */
.main-header.sticky .sticky-content .main-nav {
  flex: 1;
  margin: 0 30px;
  display: block;
}

.main-header.sticky .sticky-content .main-nav ul {
  justify-content: center;
  gap: 5px;
}

.main-header.sticky .sticky-content .main-nav li {
  margin: 0;
}

.main-header.sticky .sticky-content .nav-link {
  padding: 8px 15px;
  font-size: 16px;
  border-radius: 20px;
  color: white !important;
  transition: all 0.3s ease;
}

.main-header.sticky .sticky-content .nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white !important;
}

/* Sağ: Arama + Dil */
.main-header.sticky .header-actions-sticky {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Dar arama kutusu */
.main-header.sticky .header-search-sticky .uk-search {
  position: relative;
}

.main-header.sticky .header-search-sticky .uk-search-input {
  padding: 6px 35px 6px 15px;
  font-size: 13px;
  border-radius: 20px;
  width: 100%;
  color: #fff !important;
  background: transparent;
}

.main-header.sticky .header-search-sticky .uk-search-input::placeholder {
  color: #fff !important;
  opacity: 1;
}

.main-header.sticky .header-search-sticky .uk-search-icon-flip {
  color: #ffffff;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
}

/* Custom Language Dropdown */
.main-header.sticky .header-langs-sticky {
  position: relative;
}

.main-header.sticky .custom-lang-dropdown {
  position: relative;
  display: inline-block;
}

/* Seçili dil gösterici */
.main-header.sticky .lang-selected {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 32px;
}

.main-header.sticky .lang-selected:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.main-header.sticky .lang-flag-container {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: space-between;
}

.main-header.sticky .lang-flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.main-header.sticky .lang-code {
  font-size: 11px;
  font-weight: 600;
  color: white;
}

.main-header.sticky .dropdown-arrow {
  font-size: 8px;
  color: white;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.main-header.sticky .custom-lang-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown menü */
.main-header.sticky .lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 140px;
  overflow: hidden;
}

.main-header.sticky .custom-lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown seçenekleri */
.main-header.sticky .lang-option {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header.sticky .lang-option:last-child {
  border-bottom: none;
}

.main-header.sticky .lang-option:hover {
  background: rgba(57, 49, 133, 0.05);
  color: var(--primary-color);
}

.main-header.sticky .lang-option.active {
  background: rgba(57, 49, 133, 0.1);
  color: var(--primary-color);
  font-weight: 600;
}

.main-header.sticky .lang-option .lang-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.main-header.sticky .lang-option .lang-code-fallback {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
}

.main-header.sticky .lang-option .lang-name {
  font-size: 13px;
  flex: 1;
}

/* Mobile Menu Styles */
.mobile-menu-container {
  display: none;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo .logo-img {
  height: 40px;
  width: auto;
}

/* Hamburger Button */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7); /* Daha koyu arka plan */
  backdrop-filter: blur(3px); /* Daha az blur */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Daha yumuşak geçiş */
  z-index: 999;
  cursor: pointer; /* İmleci pointer yap */
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu - Simple & Clean */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.25); /* Daha belirgin gölge */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Daha yumuşak geçiş */
  z-index: 1000;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Header - Simple */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: white;
}

.mobile-menu-logo .logo-img {
  height: 35px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 24px;
  padding: 5px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary-color);
}

/* Mobile Menu Content - Simple */
.mobile-menu-content {
  padding: 20px;
}

/* Mobile Search - Simple */
.mobile-search {
  margin-bottom: 30px;
}

.mobile-search .uk-search {
  position: relative;
  width: 100%;
}

.mobile-search .uk-search-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.mobile-search .uk-search-icon-flip {
  color: var(--primary-color);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
}

.mobile-search .uk-search-input:focus {
  border-color: var(--primary-color);
  background: white;
  outline: none;
}

/* Mobile Navigation - Enhanced */
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-bottom: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-nav li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav li:hover {
  background: rgba(57, 49, 133, 0.03);
  transform: translateX(5px);
  box-shadow: 0 2px 10px rgba(57, 49, 133, 0.1);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 15px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  background: linear-gradient(90deg, transparent 0%, rgba(57, 49, 133, 0.02) 100%);
}

.mobile-nav-link:hover {
  color: var(--primary-color);
  text-decoration: none;
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(57, 49, 133, 0.08) 0%, rgba(57, 49, 133, 0.02) 100%);
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-link:hover::before {
  width: 4px;
}

.mobile-nav-link::after {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--primary-color);
  font-weight: 600;
}

.mobile-nav-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Sections - Simple */
.mobile-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin: 30px 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

/* Mobile Language Flags - Horizontal & Centered */
.mobile-lang-flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}

.mobile-lang-flag-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: #f8f9fa;
}

.mobile-lang-flag-link:hover {
  transform: scale(1.1);
  border-color: var(--primary-color);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(57, 49, 133, 0.2);
}

.mobile-lang-flag-link.active {
  border-color: var(--primary-color);
  background: rgba(57, 49, 133, 0.1);
  box-shadow: 0 2px 10px rgba(57, 49, 133, 0.15);
}

.mobile-lang-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-lang-code {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
}

/* Mobile Contact List - Simple */
.mobile-contact-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-contact-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
  gap: 8px;
}

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

.mobile-contact-item:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.mobile-contact-item .contact-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  min-width: 70px;
  flex-shrink: 0;
}

.mobile-contact-item .contact-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.4;
  word-break: break-all;
}

.mobile-contact-item:hover .contact-label,
.mobile-contact-item:hover .contact-value {
  color: var(--primary-color);
}

/* Mobile First - 960px ve altı */
@media (max-width: 960px) {
  /* Mobilde üst bar her zaman gizli */
  .header-top {
    display: none !important;
  }
  
  /* Mobilde desktop nav gizli */
  .desktop-nav {
    display: none !important;
  }
  
  /* Mobilde mobile container göster */
  .mobile-menu-container {
    display: flex !important;
  }
  
  /* Mobilde sticky content gizli */
  .main-header.sticky .sticky-content {
    display: none !important;
  }
  
  /* Mobilde header sabit boyut - sticky olmasın */
  .main-header {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  }
  
  .main-header.sticky {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    /* Mobilde sticky değişiklik yok */
  }
  
  /* Mobilde slideshow container margin sabit */
  .slideshow-container {
    margin-top: 0px !important; /* Sabit margin */
  }
  
  body.sticky-active .slideshow-container {
    margin-top: 0px !important; /* Değişmesin */
  }
}

/* Tablet - 769px - 1024px */
@media (min-width: 961px) and (max-width: 1024px) {
  .header-search .uk-search-input {
    width: 180px;
  }
  
  .main-nav li {
    margin: 0 10px;
  }
  

  
  /* Sticky responsive */
  .main-header.sticky .sticky-content .main-nav {
    margin: 0 20px;
  }
  
  .main-header.sticky .header-search-sticky .uk-search-input {
    width: 140px;
  }
  
  .main-header.sticky .header-actions-sticky {
    gap: 10px;
  }
}

/* Küçük desktop - 1025px - 1366px */
@media (min-width: 1025px) and (max-width: 1366px) {
  .header-search .uk-search-input {
    width: 200px;
  }
  
  .main-header.sticky .header-search-sticky .uk-search-input {
    width: 160px;
  }
}

/* Çok küçük desktop - arama input gizle */
@media (min-width: 769px) and (max-width: 1200px) {
  .header-search {
    display: none;
  }
  
  .main-header.sticky .header-search-sticky {
    display: none;
  }
}

/* Büyük ekranlar - 1367px+ */
@media (min-width: 1367px) {
  .header-search .uk-search-input {
    width: 280px;
  }
  
  .main-header.sticky .header-search-sticky .uk-search-input {
    width: 220px;
  }
}

/* Çok küçük mobil - 480px ve altı */
@media (max-width: 480px) {
  .mobile-logo .logo-img {
    height: 32px; /* Logo biraz daha küçük */
  }
  
  .mobile-menu {
    width: 300px; /* Menü biraz daha dar */
  }
  
  .mobile-menu-content {
    padding: 15px; /* Daha az padding */
  }
  
  .mobile-contact-item .contact-value {
    font-size: 13px;
  }
}


.uk-search-default {
    width: 100% !important;
}


.main-header .lang-flag {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Özel Dropdown Menü Tasarımı */
.uk-dropdown, 
.uk-navbar-dropdown {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border: none;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  min-width: 360px;
  animation: dropdownFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  margin-top: 20px;
}

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

.uk-dropdown-nav,
.uk-navbar-dropdown-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.uk-dropdown-nav > li,
.uk-navbar-dropdown-nav > li {
  margin: 0;
}

.uk-dropdown-nav > li > a,
.uk-navbar-dropdown-nav > li > a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: block;
  text-decoration: none;
  border-left: 3px solid transparent;
}

.uk-dropdown-nav > li > a:hover,
.uk-navbar-dropdown-nav > li > a:hover {
  color: var(--primary-color);
  background: linear-gradient(90deg, rgba(57, 49, 133, 0.08) 0%, rgba(57, 49, 133, 0.02) 100%);
  border-left-color: var(--primary-color);
  padding-left: 25px;
  transform: translateX(5px);
  text-decoration: none;
}

.uk-dropdown-nav > li > a::before,
.uk-navbar-dropdown-nav > li > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.uk-dropdown-nav > li > a:hover::before,
.uk-navbar-dropdown-nav > li > a:hover::before {
  width: 3px;
}

.uk-dropdown-nav > li > a::after,
.uk-navbar-dropdown-nav > li > a::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  opacity: 0;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.uk-dropdown-nav > li > a:hover::after,
.uk-navbar-dropdown-nav > li > a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Dropdown divider */
.uk-dropdown-nav > li:not(:last-child),
.uk-navbar-dropdown-nav > li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hover state için glow effect */
.uk-dropdown:hover,
.uk-navbar-dropdown:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(57, 49, 133, 0.1);
}

/* ============================================
   CORPORATE PAGE STYLES
   ============================================ */

/* Corporate Breadcrumb */
.corporate-breadcrumb {
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
}

  .corporate-breadcrumb ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
  width: fit-content;
}

.corporate-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.corporate-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.corporate-breadcrumb li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.corporate-breadcrumb li a:hover {
  color: white;
  text-decoration: none;
}

.corporate-breadcrumb li span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Corporate Banner */
.corporate-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  margin-top: 150px;
}

.corporate-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.corporate-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  margin: 0 auto;
}

.corporate-title {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Avenir Next LT Pro', 'Metropolis', sans-serif;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.corporate-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Corporate Content */
.corporate-content {
  padding: 3rem 0;
  background: #ffffff;
}

.corporate-main-content {
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

.corporate-main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px 20px 0 0;
}

/* Corporate Image */
.corporate-image-container {
  margin-bottom: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.corporate-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.corporate-image:hover {
  transform: scale(1.03);
}

/* Corporate Text */
.corporate-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #2d3748;
}

.corporate-text h1,
.corporate-text h2,
.corporate-text h3,
.corporate-text h4,
.corporate-text h5,
.corporate-text h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.corporate-text h1 {
  font-size: 1.8rem;
}

.corporate-text h2 {
  font-size: 1.6rem;
}

.corporate-text h3 {
  font-size: 1.4rem;
}

.corporate-text p {
  margin-bottom: 1rem;
  color: #4a5568;
}

.corporate-text ul,
.corporate-text ol {
  margin-bottom: 1.8rem;
  padding-left: 2.5rem;
}

.corporate-text li {
  margin-bottom: 0.8rem;
  color: #4a5568;
}

.corporate-text a {
  color: var(--secondary-color);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

.corporate-text a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Corporate Video */
.corporate-video-container {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 960px) {
  .corporate-breadcrumb {
    margin: 1.5rem 0 0 0;
  }
  
  .corporate-breadcrumb li {
    font-size: 13px;
  }
  
  .corporate-breadcrumb li:not(:last-child)::after {
    margin: 0 8px;
  }
  
  .corporate-banner {
    padding: 80px 0 60px 0;
    margin-top: 50px;
  }
  
  .corporate-title {
    font-size: 2.2rem;
  }
  
  .corporate-subtitle {
    font-size: 1.1rem;
  }
  
  .corporate-content {
    padding: 3rem 0;
  }
  

  /* Contact Page Tablet */
  .contact-breadcrumb {
    margin: 1.5rem 0 0 0;
  }
  
  .contact-breadcrumb li {
    font-size: 13px;
  }
  
  .contact-breadcrumb li:not(:last-child)::after {
    margin: 0 8px;
  }
  
  .contact-banner {
    padding: 50px 0;
    margin-top: 45px !important;
  }
  
  .contact-title {
    font-size: 2.2rem;
  }
  
  .contact-subtitle {
    font-size: 1.1rem;
  }
  

  .contact-info-card,
  .contact-form-card {
    padding: 2.5rem;
    margin: 0 1rem;
  }
  
  .contact-info-item {
    margin-bottom: 0.5rem;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .corporate-title {
    font-size: 1.8rem;
  }
  
  .corporate-main-content {
    padding: 2rem;
    border-radius: 16px;
  }
  
  .corporate-text {
    font-size: 1.1rem;
  }
  
  /* Contact Page Mobile */
  .contact-title {
    font-size: 1.8rem;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 2rem;
    border-radius: 16px;
  }
  
  .contact-info-item {
    padding: 0.8rem;
  }
  
  .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
  
  .quick-contact-card {
    padding: 1.5rem;
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Banner */
.contact-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  margin-top: 150px;
}

.contact-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  animation: shimmer 3s ease-in-out infinite;
}

.contact-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  margin: 0 auto;
}

.contact-title {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Avenir Next LT Pro', 'Metropolis', sans-serif;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Contact Breadcrumb */
.contact-breadcrumb {
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
}

.contact-breadcrumb ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.contact-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.contact-breadcrumb li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-breadcrumb li a:hover {
  color: white;
  text-decoration: none;
}

.contact-breadcrumb li span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Contact Content */
.contact-content {
  background: var(--contact-content-bg);
}

/* Contact Info Card */
.contact-info-card {
  background: var(--contact-card-bg);
  border-radius: 20px;
  padding: 3rem 0rem;
  box-shadow: 0 20px 60px var(--shadow-light);
  position: relative;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px 20px 0 0;
}

.contact-info-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-family: 'Avenir Next LT Pro', 'Metropolis', sans-serif;
}

.contact-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

/* Contact Info List */
.contact-info-list {
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  padding: 1rem;
  transition: all 0.3s ease;
  background: var(--hover-bg-light);
}


.contact-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--contact-icon-bg);
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.2rem;
}

.contact-details {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  display: block;
  font-size: 1.1rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-value:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Contact Map */
.contact-map-container {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 20px 20px 0 0;
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: 'Avenir Next LT Pro', 'Metropolis', sans-serif;
}

.contact-form-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  margin-top: 2rem;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  box-sizing: border-box;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(57, 49, 133, 0.1);
}

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

/* File Upload */
.file-upload {
  position: relative;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-label {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 2px dashed #e1e5e9;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.file-label:hover {
  border-color: var(--primary-color);
  background: rgba(57, 49, 133, 0.02);
}

.file-icon {
  font-size: 1.2rem;
  margin-right: 0.8rem;
}

.file-text {
  font-size: 1rem;
  color: #666;
}

/* Form Actions */
.form-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.checkbox-label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.checkbox-label a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.checkbox-label a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Contact Submit Button */
.contact-submit-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(57, 49, 133, 0.3);
  color: white;
  text-decoration: none;
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-icon {
  font-size: 1.1rem;
}

/* Quick Contact Section */
.quick-contact-section {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #e1e5e9;
}

.quick-contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: 'Avenir Next LT Pro', 'Metropolis', sans-serif;
}

.quick-contact-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Quick Contact Cards */
.quick-contact-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.quick-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.quick-contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.quick-contact-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: 'Avenir Next LT Pro', 'Metropolis', sans-serif;
}

.quick-contact-link {
  font-size: 1.1rem;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.quick-contact-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Mobile Menu - Alt Menü Accordion Tasarımı */
.mobile-nav .uk-nav-default {
  font-family: 'Avenir Next LT Pro', 'Metropolis', sans-serif;
}

.mobile-nav .uk-nav-default > li {
  border-radius: 8px;
  margin-bottom: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.mobile-nav .uk-nav-default > li:hover {
  background: rgba(57, 49, 133, 0.03);
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(57, 49, 133, 0.08);
}

.mobile-nav .uk-nav-default > li > a {
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 10px;
  border-bottom: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  background: linear-gradient(90deg, transparent 0%, rgba(57, 49, 133, 0.01) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav .uk-nav-default > li > a:hover {
  color: var(--primary-color);
  background: linear-gradient(90deg, rgba(57, 49, 133, 0.08) 0%, rgba(57, 49, 133, 0.02) 100%);
  padding-left: 20px;
}

.mobile-nav .uk-nav-default > li > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav .uk-nav-default > li > a:hover::before {
  width: 4px;
}

.mobile-nav .uk-nav-default > li.uk-active > a {
  color: var(--primary-color);
  font-weight: 600;
  background: linear-gradient(90deg, rgba(57, 49, 133, 0.1) 0%, rgba(57, 49, 133, 0.03) 100%);
  border-left: 4px solid var(--primary-color);
}

.mobile-nav .uk-nav-default > li.uk-parent > a::after {
  color: var(--primary-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-nav .uk-nav-default > li.uk-parent.uk-open > a::after {
  transform: rotate(180deg);
}

/* Alt Menü Styling */
.mobile-nav .uk-nav-sub {
  padding: 8px 0 8px 20px;
  background: linear-gradient(135deg, rgba(57, 49, 133, 0.05) 0%, rgba(15, 99, 247, 0.02) 100%);
  border-left: 3px solid var(--primary-color);
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 0 8px 8px 0;
  margin-top: 5px;
  box-shadow: inset 0 2px 4px rgba(57, 49, 133, 0.1);
}

.mobile-nav .uk-nav-sub > li {
  background: none;
  margin-bottom: 1px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav .uk-nav-sub > li:hover {
  background: rgba(57, 49, 133, 0.08);
  transform: translateX(5px);
}

.mobile-nav .uk-nav-sub > li > a {
  color: var(--text-color);
  font-weight: 400;
  padding: 6px 0px;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border-radius: 6px;
}

.mobile-nav .uk-nav-sub > li > a:hover {
  color: var(--primary-color);
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.mobile-nav .uk-nav-sub > li > a::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--secondary-color);
  font-weight: bold;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.mobile-nav .uk-nav-sub > li > a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* UIKit Parent Icon Override */
.mobile-nav .uk-nav-parent-icon > .uk-parent > a::after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23393185%22%20stroke-width%3D%222%22%20points%3D%2210%201%204%207%2010%2013%22%20transform%3D%22rotate(90%207%207)%22%20%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 1px 2px rgba(57, 49, 133, 0.2));
}

.mobile-nav .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
  transform: rotate(180deg);
}

/* ==========================================
   CONTACT MAP SECTION - FULL WIDTH
   ========================================== */

.contact-map-container-full {
  width: 100%;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.contact-map-container-full iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Contact Map Responsive */
@media (max-width: 480px) {
  .contact-map-section {
    margin-top: 40px;
    padding: 30px 0;
  }
  
  .contact-map-container-full {
    height: 300px;
    border-radius: 10px;
  }
}

@media (min-width: 961px) and (max-width: 1024px) {
  .contact-map-section {
    margin-top: 50px;
    padding: 35px 0;
  }
  
  .contact-map-container-full {
    height: 350px;
  }
}

/* ==========================================
   HABERLER PAGE STYLES
   ========================================== */

/* Haberler Banner */
.news-banner {
  background: var(--background-gradient-primary);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  margin-top: 150px;
}

.news-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  animation: shimmer 3s ease-in-out infinite;
}

.news-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  margin: 0 auto;
}

.uk-lightbox {
  background: #000000ba;
}

.news-title {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Avenir Next LT Pro', 'Metropolis', sans-serif;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.news-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Haberler Breadcrumb */
.news-breadcrumb {
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
}

.news-breadcrumb ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.news-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.news-breadcrumb li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.news-breadcrumb li a:hover {
  color: white;
  text-decoration: none;
}

.news-breadcrumb li span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Haberler Content */
.news-content {
  padding: 1rem 0;
}

/* Haberler List */
.news-list {
  margin-top: 2rem;
}

.news-item {
  margin-bottom: 3rem;
}

.news-card {
  background: var(--text-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-light);
  transition: all 0.4s ease;
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 20px 20px 0 0;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px var(--shadow-medium);
}

.news-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 1.5rem;
}

.news-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.news-text-content {
  padding: 2rem;
}

.news-item-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: 'Avenir Next LT Pro', 'Metropolis', sans-serif;
  line-height: 1.3;
}

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

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

.news-excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.news-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--shadow-brand-medium);
  color: var(--text-white);
  text-decoration: none;
}

/* Haberler Responsive */
@media (max-width: 960px) {
  .news-banner {
    padding: 50px 0;
    margin-top: 50px;
  }
  
  .news-title {
    font-size: 2.2rem;
  }
  
  .news-subtitle {
    font-size: 1.1rem;
  }
  
  .news-content {
    padding: 3rem 0;
  }
  
  .news-text-content {
    padding: 1.5rem;
  }
  
  .news-item-title {
    font-size: 1.5rem;
  }
  
  .news-excerpt {
    font-size: 1rem;
  }
  
  .news-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .news-title {
    font-size: 1.8rem;
  }
  
  .news-text-content {
    padding: 1rem;
  }
  
  .news-item-title {
    font-size: 1.3rem;
  }
  
  .news-image {
    height: 200px;
  }
  
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.main-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Footer Top - Logo ve Sosyal Medya */
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--footer-border);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: var(--footer-text-transparent);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0;
}

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

.footer-section-title {
  color: var(--footer-text);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--footer-social-bg);
  border-radius: 50%;
  color: var(--footer-text);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--footer-social-hover);
  color: var(--footer-text);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-dark);
}

.social-link i {
  font-size: 1rem;
}

/* Footer Bottom - Menüler */
.footer-bottom {
  padding-bottom: 30px;
}

.footer-menus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-menu-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-menu-title {
  color: var(--footer-text);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-menu-list li {
  margin: 0;
}

.footer-menu-list a {
  color: var(--footer-text-transparent);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-menu-list a:hover {
  color: var(--footer-text);
  text-decoration: none;
  transform: translateX(5px);
}

.footer-menu-list i {
  font-size: 0.8rem;
  color: #ee3131;
  width: 16px;
}

/* Copyright */
.footer-copyright {
  padding-top: 20px;
  border-top: 1px solid var(--footer-border);
  text-align: center;
}

.copyright-content p {
  color: var(--text-white-transparent-light);
  font-size: 0.85rem;
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 960px) {
  .main-footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding-bottom: 30px;
  }
  
  .footer-description {
    max-width: none;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-menus {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-menu-title {
    text-align: center;
  }
  
  .footer-menu-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu-list {
    align-items: center;
  }
  
  .footer-menu-list a {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-top {
    gap: 25px;
    padding-bottom: 25px;
  }
  
  .footer-logo-img {
    height: 40px;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 0.9rem;
  }
  
  .footer-menus {
    gap: 25px;
  }
  
  .footer-menu-title {
    font-size: 1rem;
  }
  
  .footer-menu-list a {
    font-size: 0.85rem;
  }
}

.uk-text-white {color: #fff;}

.grecaptcha-badge {display: none !important;}


/* Modern Sol Menü Stilleri */
.modern-side-menu {
  background: var(--background-color);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-transparent-light);
}

.menu-header {
  background: var(--background-gradient-primary);
  position: relative;
  overflow: hidden;
}

.menu-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.uk-bg-gradient-primary {
  background: var(--background-gradient-primary) !important;
  position: relative;
  z-index: 1;
}

.modern-side-nav {
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}

.menubgcolor{
  background: var(--background-color);
}

.modern-side-nav .uk-nav > li > a {
  border-left: 4px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin: 8px 12px;
  border-radius: 10px;
  background: var(--background-light);
  border: 1px solid var(--border-light);
}

.modern-menu-item {
  background: var(--background-light);
  color: var(--primary-color) !important;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 4px var(--shadow-light);
}

.modern-menu-item:hover {
  background: var(--secondary-color);
  color: var(--text-white) !important;
  border-left-color: var(--secondary-color);
  box-shadow: 0 4px 15px var(--shadow-brand-medium);
  border: 1px solid var(--secondary-color);
}

.modern-side-nav .uk-nav > li.uk-active > a.modern-menu-active,
.modern-menu-active {
  background: transparent !important;
  color: var(--primary-color) !important;
  border-left-color: var(--primary-color) !important;
  box-shadow: 0 2px 8px var(--shadow-brand-light) !important;
  border: 2px solid var(--primary-color) !important;
}

.menu-item-content {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  padding: 2px 0;
}

.menu-icon {
  margin-right: 15px;
  transition: all 0.3s ease;
  opacity: 0.8;
  color: var(--primary-color);
}

.modern-menu-item:hover .menu-icon {
  opacity: 1;
  transform: translateX(2px);
  color: var(--secondary-color);
}

.modern-side-nav .uk-nav > li.uk-active > a.modern-menu-active .menu-icon,
.modern-menu-active .menu-icon {
  opacity: 1;
  transform: translateX(2px);
  color: var(--primary-color) !important;
}

.menu-text {
  flex: 1;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.modern-menu-item .menu-text {
  color: var(--primary-color);
}

.modern-menu-item:hover .menu-text {
  color: var(--primary-color);
}

.modern-side-nav .uk-nav > li.uk-active > a.modern-menu-active .menu-text,
.modern-menu-active .menu-text {
  color: var(--primary-color) !important;
}

.menu-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  transition: left 0.5s ease;
  z-index: 1;
}

.modern-menu-item:hover .menu-hover-effect {
  left: 100%;
}

.modern-menu-active .menu-hover-effect {
  left: 100%;
}

/* Hover animasyonları */
.modern-side-nav .uk-nav > li > a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--animation-shimmer) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 0;
}

.modern-side-nav .uk-nav > li > a:hover::before {
  width: 150px;
  height: 150px;
}

/* Menü öğeleri için ek stiller */
.modern-side-nav .uk-nav > li > a {
  position: relative;
}

.modern-side-nav .uk-nav > li > a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-light);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
  z-index: 0;
}

.modern-menu-item:hover::after {
  opacity: 1;
}

.modern-menu-active::after {
  opacity: 0;
}

/* Responsive Modern Sol Menü */
@media (max-width: 960px) {
  .modern-side-nav .uk-nav > li > a {
    padding: 12px 16px !important;
    font-size: 15px;
    margin: 4px 8px;
  }
  
  .menu-header h3 {
    font-size: 18px;
    padding: 15px !important;
  }
  
  .modern-side-menu {
    border-radius: 12px;
  }
  
  .menu-icon {
    margin-right: 12px;
  }
  
  .menu-text {
    font-size: 15px;
  }
  .hero-subtitle{
    font-size: 18px !important;
    font-weight: bold;
    max-height: 20px !important;
  }
  .hero-content{
    padding-top: 20px !important;
  }
  .hero-title{
    max-height: 20px !important;
  }
}

/* Eski stiller için geriye uyumluluk */
.side-menu {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.side-menu .uk-nav > li > a {
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.side-menu .uk-nav > li > a:hover {
  background: linear-gradient(135deg, #ee3131 0%, #2f3967 100%);
  color: #ffffff !important;
  transform: translateX(5px);
  border-left-color: #ee3131;
  box-shadow: 0 4px 15px rgba(238, 49, 49, 0.3);
}

.side-menu .uk-nav > li.uk-active > a {
  background: linear-gradient(135deg, #ee3131 0%, #2f3967 100%);
  color: #ffffff !important;
  border-left-color: #ee3131;
  box-shadow: 0 4px 15px rgba(238, 49, 49, 0.3);
  transform: translateX(5px);
}

.side-menu .uk-nav > li > a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.side-menu .uk-nav > li > a:hover::before {
  left: 100%;
}

.hover-primary:hover {
  background: linear-gradient(135deg, #ee3131 0%, #2f3967 100%) !important;
  color: #ffffff !important;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(238, 49, 49, 0.3);
}

/* Responsive Sol Menü */
@media (max-width: 960px) {
  .side-menu .uk-nav > li > a {
    padding: 12px 15px !important;
    font-size: 16px;
  }
  
  .side-menu .uk-card-header h3 {
    font-size: 18px;
    padding: 15px !important;
  }
}

/* ========================================
   HABER DETAY SAYFASI ÖZEL STİLLERİ
   ======================================== */

/* Haber Meta Bilgileri */
.news-meta {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-meta .uk-flex > div {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 12px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.news-meta .uk-flex > div:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-meta .uk-text-small {
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Haber Tarih Bilgisi (İçerik Üstü) */
.uk-bg-light.uk-border-rounded {
  background: var(--background-light) !important;
  border: 1px solid var(--border-light) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.uk-bg-light.uk-border-rounded .uk-flex > div {
  background: var(--background-color);
  padding: 8px 12px;
  border-radius: 15px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.uk-bg-light.uk-border-rounded .uk-flex > div:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(57, 49, 133, 0.2);
}

.uk-bg-light.uk-border-rounded .uk-text-small {
  font-weight: 600;
  color: var(--text-color);
}

.uk-bg-light.uk-border-rounded .uk-flex > div:hover .uk-text-small {
  color: var(--text-white);
}

/* Haber İçeriği */
.news-content {
  line-height: 1.8;
  font-size: 16px;
  color: var(--text-color);
}

.news-content h1, .news-content h2, .news-content h3, 
.news-content h4, .news-content h5, .news-content h6 {
  color: var(--primary-color);
  font-weight: 600;
}

.news-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.news-content img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-content img:hover {
  transform: scale(1.02);
}

.news-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

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

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

/* Sosyal Paylaşım Butonları */
.uk-button-primary {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--text-white);
  transition: all 0.3s ease;
  border-radius: 25px;
  padding: 8px 16px;
  font-weight: 500;
}

.uk-button-primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 99, 247, 0.3);
}

/* Yan Panel Kartları */
.uk-card-default {
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.uk-card-default:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.uk-card-header {
  background: var(--background-gradient-primary);
  color: var(--text-white);
  border-radius: 8px 8px 0 0;
}

.uk-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* İlgili Haberler */
.img-cover-80 {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

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

/* Kategori, Arşiv ve Etiket Linkleri */
.uk-button-text {
  color: var(--text-color);
  transition: all 0.3s ease;
  border-radius: 6px;
  padding: 8px 12px;
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.uk-button-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--background-gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.uk-button-text:hover {
  color: var(--text-white);
  transform: translateX(5px);
}

.uk-button-text:hover::before {
  left: 0;
}

.uk-button-text:hover .uk-icon {
  color: var(--text-white);
}

/* Etiket Özel Stilleri */
.uk-button-text[href*="etiket="] {
  font-weight: 500;
  color: var(--primary-color);
}

.uk-button-text[href*="etiket="]:hover {
  color: var(--text-white);
  background: var(--primary-color);
}

.uk-button-text[href*="etiket="] .uk-icon {
  color: var(--primary-color);
}

.uk-button-text[href*="etiket="]:hover .uk-icon {
  color: var(--text-white);
}

/* Sosyal Medya Paylaş Butonları */
.social-share-btn {
  border: none !important;
  color: white !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  padding: 6px 12px !important;
  margin: 2px !important;
  border-radius: 20px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  min-width: auto !important;
}

.social-share-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
  color: white !important;
  text-decoration: none !important;
}

.social-share-btn .uk-icon {
  margin-right: 4px !important;
  font-size: 0.9em !important;
}

/* Facebook */
.facebook-btn {
  background: #1877f2 !important;
}

.facebook-btn:hover {
  background: #166fe5 !important;
}

/* Twitter/X */
.twitter-btn {
  background: #1da1f2 !important;
}

.twitter-btn:hover {
  background: #1a91da !important;
}

/* LinkedIn */
.linkedin-btn {
  background: #0077b5 !important;
}

.linkedin-btn:hover {
  background: #006097 !important;
}

/* WhatsApp */
.whatsapp-btn {
  background: #25d366 !important;
}

.whatsapp-btn:hover {
  background: #20ba5a !important;
}

/* Haber Detay Responsive */
@media (max-width: 960px) {
  .news-meta .uk-flex {
    flex-direction: column;
    align-items: center;
  }
  
  .news-meta .uk-flex > div {
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  .uk-width-2-3\@l {
    width: 100% !important;
  }
  
  .uk-width-1-3\@l {
    width: 100% !important;
    margin-top: 2rem;
  }
  
  .news-content {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .uk-button-primary {
    padding: 6px 12px;
    font-size: 14px;
  }
}

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

.corporate-main-content > * {
  animation: fadeInUp 0.6s ease-out;
}

.corporate-main-content > *:nth-child(2) {
  animation-delay: 0.1s;
}

.corporate-main-content > *:nth-child(3) {
  animation-delay: 0.2s;
}

.corporate-main-content > *:nth-child(4) {
  animation-delay: 0.3s;
}

/* Haber Detay Özel Efektler */
.uk-card-default::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background-gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: -1;
}

.uk-card-default:hover::after {
  opacity: 0.05;
}

/* Haber Detay Breadcrumb */
.corporate-breadcrumb ul {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.corporate-breadcrumb a {
  color: var(--text-white);
  transition: all 0.3s ease;
}

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

.corporate-breadcrumb > ul > li > span {
  color: var(--text-white-transparent);
  font-weight: 500;
}

/* ========================================
   TEMSİLCİLİKLER SAYFASI STİLLERİ
   ======================================== */

/* Temsilcilik Kartları */
.representation-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  background: var(--background-color);
}

.representation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
  border-color: var(--primary-color);
}

.representation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--background-gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

/* Temsilcilik Logo */
.representation-logo {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #ffffff;
  padding: 20px;
  transition: all 0.3s ease;
}

.representation-card:hover .representation-logo {
  transform: scale(1.05);
  background: #ffffff;
}

/* Temsilcilik Placeholder */
.representation-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--text-lighter);
  transition: all 0.3s ease;
}

.representation-card:hover .representation-placeholder {
  background: #ffffff;
  color: var(--primary-color);
}

/* Temsilcilik Kart İçeriği */
.representation-card .uk-card-body {
  padding: 1.5rem;
  background: var(--background-color);
}

.representation-card .uk-card-title {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.representation-card:hover .uk-card-title {
  color: var(--primary-color);
}

/* Temsilcilik Açıklama */
.representation-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Temsilcilik Link Butonu */
.representation-link {
  background: var(--background-gradient-primary) !important;
  color: var(--text-white) !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(57, 49, 133, 0.2) !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.representation-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(57, 49, 133, 0.3) !important;
  color: var(--text-white) !important;
  text-decoration: none !important;
  background: var(--background-gradient-primary) !important;
}

.representation-link .uk-icon {
  margin-right: 6px !important;
  font-size: 0.9em !important;
}

/* Temsilcilik Grid Responsive */
@media (max-width: 960px) {
  .uk-child-width-1-3\@m {
    width: 50% !important;
  }
}

@media (max-width: 639px) {
  .uk-child-width-1-2\@s {
    width: 100% !important;
  }
  
  .representation-logo {
    height: 180px;
  }
  
  .representation-placeholder {
    height: 180px;
  }
  
  .representation-card .uk-card-body {
    padding: 1.25rem;
  }
  
  .representation-card .uk-card-title {
    font-size: 1rem;
  }
}

/* Temsilcilik Animasyonları */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.uk-grid > div {
  animation: cardFadeIn 0.6s ease-out;
}

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

/* Temsilcilik Placeholder Stilleri */
.uk-placeholder-large {
  padding: 3rem 2rem;
  background: var(--background-light);
  border: 2px dashed var(--border-light);
  border-radius: 15px;
}

.uk-placeholder-large .uk-icon {
  color: var(--text-lighter);
  margin-bottom: 1rem;
}

.uk-placeholder-large p {
  margin: 0;
  color: var(--text-light);
}

/* ========================================
   TEMSİLCİLİKLER MODAL STİLLERİ
   ======================================== */

/* Modal Genel Stilleri */
.uk-modal-dialog.uk-modal-large {
  max-width: 900px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Modal Header */
.uk-modal-header {
  background: var(--background-gradient-primary);
  color: var(--text-white);
  padding: 1.5rem 2rem;
  border-bottom: none;
}

.uk-modal-title {
  color: var(--text-white) !important;
  font-size: 1.5rem;
  margin: 0;
}

/* Modal Body */
.uk-modal-body {
  padding: 2rem;
  background: var(--background-color);
}

/* Modal Logo */
.representation-modal-logo {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

/* Modal Placeholder */
.representation-modal-placeholder {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--text-lighter);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

/* Modal İçerik */
.representation-modal-content {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 1rem;
}

.representation-modal-content h1,
.representation-modal-content h2,
.representation-modal-content h3,
.representation-modal-content h4,
.representation-modal-content h5,
.representation-modal-content h6 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.representation-modal-content p {
  margin-bottom: 1rem;
}

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

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

/* Modal Link Butonu */
.representation-modal-link {
  background: var(--background-gradient-primary) !important;
  color: var(--text-white) !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 12px 24px !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(57, 49, 133, 0.3) !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.representation-modal-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(57, 49, 133, 0.4) !important;
  color: var(--text-white) !important;
  text-decoration: none !important;
  background: var(--background-gradient-primary) !important;
}

.representation-modal-link .uk-icon {
  margin-right: 8px !important;
  font-size: 1em !important;
}

/* Modal Responsive */
@media (max-width: 960px) {
  .uk-modal-dialog.uk-modal-large {
    max-width: 95%;
    margin: 20px;
  }
  
  .uk-modal-header {
    padding: 1.25rem 1.5rem;
  }
  
  .uk-modal-body {
    padding: 1.5rem;
  }
  
  .representation-modal-logo,
  .representation-modal-placeholder {
    height: 200px;
  }
}

@media (max-width: 639px) {
  .uk-modal-dialog.uk-modal-large {
    max-width: 98%;
    margin: 10px;
  }
  
  .uk-modal-header {
    padding: 1rem;
  }
  
  .uk-modal-body {
    padding: 1rem;
  }
  
  .uk-modal-title {
    font-size: 1.25rem;
  }
  
  .representation-modal-logo,
  .representation-modal-placeholder {
    height: 180px;
  }
  
  .representation-modal-content {
    font-size: 0.95rem;
  }
  
  .representation-modal-link {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }
}

/* Arama Sayfası Stilleri */
.search-results {
  padding: 2rem 0;
}

.search-section {
  margin-bottom: 3rem;
}

.search-section:last-child {
  margin-bottom: 0;
}

.search-section .section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-lighter);
  position: relative;
}

.search-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--background-gradient-primary);
  border-radius: 1px;
}

.search-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  height: 100%;
}

.search-card:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-2px);
}

.search-card .uk-card {
  border: 1px solid var(--border-lighter);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  background: var(--background-color);
  box-shadow: 0 2px 8px var(--shadow-light);
}

.search-card:hover .uk-card {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px var(--shadow-brand-light);
  transform: translateY(-2px);
}

.search-card .card-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.search-card:hover .card-title {
  color: var(--primary-color);
}

.search-card .card-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0.5rem 0 0 0;
  line-height: 1.3;
}

/* Kişiler Kartları */
.search-section .uk-card.uk-text-center {
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
}

.search-section .uk-card.uk-text-center img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--border-lighter);
  transition: all 0.3s ease;
}

.search-section .uk-card.uk-text-center:hover img {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

/* Projeler Kartları */
.search-section .uk-transition-toggle {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-section .uk-transition-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow-brand-medium) !important;
}

.search-section .uk-transition-toggle .uk-card-body {
  padding: 1.5rem;
}

.search-section .uk-transition-toggle .uk-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

.search-section .uk-transition-toggle p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.search-section .uk-transition-toggle .incele-btn {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.search-section .uk-transition-toggle:hover .incele-btn {
  color: var(--secondary-color);
}

.search-section .uk-transition-toggle .incele-btn .uk-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.search-section .uk-transition-toggle:hover .incele-btn .uk-icon {
  transform: translateX(3px);
}

/* Sonuç Bulunamadı */
.search-section .uk-text-center .uk-card {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--background-lighter);
  border: 2px dashed var(--border-color);
}

.search-section .uk-text-center h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.search-section .uk-text-center p {
  color: var(--text-lighter);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 960px) {
  .search-section .section-title {
    font-size: 1.5rem;
  }
  
  .search-card .card-title {
    font-size: 1rem;
  }
  
  .search-section .uk-card.uk-text-center img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 639px) {
  .search-results {
    padding: 1rem 0;
  }
  
  .search-section {
    margin-bottom: 2rem;
  }
  
  .search-section .section-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .search-card .uk-card {
    border-radius: 8px;
  }
  
  .search-section .uk-card.uk-text-center {
    padding: 1rem;
  }
  
  .search-section .uk-card.uk-text-center img {
    width: 80px;
    height: 80px;
    margin-bottom: 0.75rem;
  }
  
  .search-section .uk-transition-toggle .uk-card-body {
    padding: 1rem;
  }
  
  .search-section .uk-transition-toggle .uk-card-title {
    font-size: 1.1rem;
  }
  
  .search-section .uk-text-center .uk-card {
    padding: 2rem 1rem;
  }
  
  .search-section .uk-text-center h3 {
    font-size: 1.25rem;
  }
}

/* 404 Error Page Styles */
.error-banner {
  background: var(--background-gradient-dark);
  position: relative;
  overflow: hidden;
}

.error-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.error-content {
  padding: 4rem 0;
  background: var(--background-lighter);
}

.error-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Error Icon */
.error-icon {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.error-number {
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  text-shadow: 0 4px 8px var(--shadow-brand-light);
  animation: errorPulse 2s ease-in-out infinite;
}

.error-symbol {
  position: absolute;
  top: -10px;
  right: -20px;
  font-size: 3rem;
  color: var(--error-color);
  animation: errorBounce 1.5s ease-in-out infinite;
}

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

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

/* Error Message */
.error-message {
  margin-bottom: 3rem;
}

.error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.error-description {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Error Actions */
.error-actions {
  margin-bottom: 3rem;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 60px;
  width: 100%;
}

.error-btn .btn-icon {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.primary-btn {
  background: var(--background-gradient-primary);
  color: var(--text-white);
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px var(--shadow-brand-medium);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-brand-medium);
  color: var(--text-white);
  text-decoration: none;
}

.secondary-btn {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.secondary-btn:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-brand-light);
  text-decoration: none;
}

/* Search Section */
.error-search {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--background-color);
  border-radius: 15px;
  box-shadow: 0 4px 20px var(--shadow-light);
}

.search-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.search-form {
  max-width: 500px;
  margin: 0 auto;
}

.search-input-group {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-light);
  background: var(--background-color);
}

.search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
}

.search-input::placeholder {
  color: var(--text-lighter);
}

.search-btn {
  padding: 1rem 1.5rem;
  background: var(--background-gradient-primary);
  border: none;
  color: var(--text-white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: var(--background-gradient-primary);
  transform: scale(1.05);
}

.search-icon {
  font-size: 1.2rem;
}

/* Popular Pages */
.popular-pages {
  padding: 2rem;
  background: var(--background-color);
  border-radius: 15px;
  box-shadow: 0 4px 20px var(--shadow-light);
}

.popular-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.popular-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--background-lighter);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-lighter);
  margin-bottom: 0.5rem;
}

.popular-link:hover {
  background: var(--hover-bg-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-light);
}

.popular-link .link-icon {
  margin-right: 0.75rem;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.popular-link .link-text {
  font-weight: 500;
}

/* Redirect Notice */
.redirect-notice {
  background: var(--background-light);
  padding: 1rem 0;
  border-top: 1px solid var(--border-lighter);
}

.redirect-text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.redirect-text #countdown {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 960px) {
  .error-number {
    font-size: 6rem;
  }
  
  .error-symbol {
    font-size: 2.5rem;
    top: -5px;
    right: -15px;
  }
  
  .error-title {
    font-size: 2rem;
  }
  
  .error-description {
    font-size: 1.1rem;
  }
  
  .error-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    min-height: 55px;
  }
}

@media (max-width: 639px) {
  .error-content {
    padding: 2rem 0;
  }
  
  .error-number {
    font-size: 4rem;
  }
  
  .error-symbol {
    font-size: 2rem;
    top: -3px;
    right: -10px;
  }
  
  .error-title {
    font-size: 1.75rem;
  }
  
  .error-description {
    font-size: 1rem;
  }
  
  .error-actions .uk-grid {
    grid-template-columns: 1fr;
  }
  
  .error-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    min-height: 50px;
  }
  
  .search-input-group {
    flex-direction: column;
    border-radius: 15px;
  }
  
  .search-input {
    border-radius: 15px 15px 0 0;
  }
  
  .search-btn {
    border-radius: 0 0 15px 15px;
  }
  
  .popular-pages .uk-grid {
    grid-template-columns: 1fr;
  }
}

/* Ürünler Sayfası - Basit UIkit Card Stilleri */
.uk-card {
  height: 100%;
  transition: transform 0.2s ease;
}

.uk-card:hover {
  transform: translateY(-2px);
}

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

.uk-card-body {
  flex: 1;
}

.uk-card-title {
  margin-bottom: 0.5rem;
}

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

.uk-card-title a:hover {
  color: var(--primary-color);
}

.uk-text-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.uk-card-footer {
  padding-top: 0;
}

.uk-button-primary {
  background: var(--primary-color);
  color: white;
  border: none;
}

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

/* Kategori Bulunamadı */
.no-categories {
  text-align: center;
  padding: 4rem 0;
}

.no-categories-content {
  max-width: 500px;
  margin: 0 auto;
}

.no-categories-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.no-categories-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.no-categories-description {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.no-categories-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--background-gradient-primary);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.no-categories-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-brand-medium);
  color: var(--text-white);
  text-decoration: none;
}

.no-categories-btn .btn-icon {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.uk-breadcrumb>*>*:hover {
  font-size: .875rem;
  color: var(--text-white);
}


/* Ürün Detay Sayfası Özel Stilleri */
.product-main-img {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid var(--primary-color);
}

.product-images {
  position: relative;
}

.product-main-img:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--secondary-color);
}

.product-gallery-img {
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 200px;
  object-fit: cover;
}

.product-gallery-img:hover {
  transform: scale(1.02);
}

.product-info {
  padding: 30px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-category .uk-badge {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: white;
  font-weight: 500;
}

.product-description {
  line-height: 1.9;
  color: #555;
  font-size: 15px;
}

.product-features h5 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.product-document .uk-button {
  border-radius: 8px;
  font-weight: 500;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.product-document .uk-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-video video {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-cta .uk-card {
  border-radius: 0px;
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-cta .uk-button {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 12px 24px;
}

.contact-cta .uk-button:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Başlık stilleri */
.uk-text-lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.uk-text-lead::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

/* Kart stilleri */
.uk-card {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.uk-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .product-info {
      padding: 20px;
      margin-top: 20px;
  }

  .contact-cta .uk-button {
      display: block;
      width: 100%;  
      margin-bottom: 10px;
  }

  .uk-text-lead {
      font-size: 16px;
  }
}





/* Ürün Slider CSS - Modern ve Şık Tasarım */

/* Ana Slider Container */
.product-slider-container {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Slider Başlık */
.product-slider-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 300;
  color: #2f3967;
  position: relative;
}

.product-slider-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #2f3967, #ee3131);
  border-radius: 2px;
}

.product-slider-title i {
  color: #ee3131;
  margin-right: 15px;
}

/* Tüm Slider Sayfaları - Şeffaf Arka Plan */
.product-slide {
  background: transparent;
  overflow: hidden;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slide-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slide-content {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-features-content,
.product-gallery-content {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Sayfa 1: Ürün Genel Bilgileri */
.product-hero-content {
  position: relative;
  z-index: 2;
}

.product-hero-title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
  color:black !important
}

.product-hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  color:black !important
}

.product-hero-button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(49, 93, 238, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(238, 49, 49, 0.6);
  background: linear-gradient(135deg, #d42a2a, #ee3131);
}

.product-hero-image {
  position: relative;
  transition: all 0.3s ease;
}

.product-hero-image img {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.product-hero-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 35px 70px rgba(0,0,0,0.5);
}

/* Sayfa 2: Ürün Özellikleri */
.product-features-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Mobil Ürün Özellikleri Liste Tasarımı */
.product-features-mobile-list {
  max-height: 100vh;
  overflow-y: auto;
  padding: 0 1rem;
}

.product-feature-mobile-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid #ee3131;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.product-feature-mobile-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  background: rgba(255,255,255,1);
}

.product-feature-mobile-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #ee3131, #d42a2a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(238, 49, 49, 0.3);
}

.product-feature-mobile-icon i {
  color: white;
  font-size: 1rem;
}

.product-feature-mobile-content {
  flex: 1;
}

.product-feature-mobile-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f3967 !important;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.product-feature-mobile-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.product-empty-mobile {
  background: rgba(255,255,255,0.9);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px dashed #dee2e6;
  backdrop-filter: blur(10px);
  margin: 0 1rem;
}

.product-empty-mobile i {
  color: #adb5bd;
  margin-bottom: 1rem;
}

.product-empty-mobile p {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
}

.product-feature-card {
  /* background: rgba(255,255,255,0.95,0.2);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  height: 100%;
  max-height: 200px;
  overflow: hidden; */
  
}
.maxW{
  max-width: 70%;
  margin:auto;
}
.product-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: rgba(255,255,255,1);
}

.product-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ee3131, #d42a2a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 15px rgba(238, 49, 49, 0.3);
}

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

.product-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f3967 !important;
  margin-bottom: 0.5rem;
}

.product-feature-description {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Sayfa 3: Galeri ve Dokümanlar */
.product-gallery-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.product-gallery-section {
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  height: 100%;
  max-height: 300px;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.product-gallery-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  background: rgba(255,255,255,1);
}

.product-gallery-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color) !important;
  margin-bottom: 1rem;
  text-align: center;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 0.5rem;
}

.product-gallery-section-title i {
  color: #ee3131;
  margin-right: 8px;
}

/* Desktop Galeri Grid */
.product-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  background: white;
}

.product-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.product-gallery-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.product-gallery-item:hover .product-gallery-thumbnail {
  transform: scale(1.1);
}

.product-gallery-caption {
  padding: 1rem;
  background: rgba(47, 57, 103, 0.95);
  backdrop-filter: blur(10px);
}

.product-gallery-caption h5 {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mobil Galeri Slider */
.product-gallery-slide {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.product-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.product-gallery-slide:hover img {
  transform: scale(1.05);
}

.product-gallery-slide .uk-overlay {
  background: rgba(47, 57, 103, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 0 0 15px 15px;
}

.product-gallery-slide .uk-overlay h4 {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Galeri Navigasyon */
.product-gallery-slide .uk-slidenav {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-gallery-slide .uk-slidenav a {
  background: linear-gradient(135deg, #2f3967, #ee3131);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(47, 57, 103, 0.3);
}

.product-gallery-slide .uk-slidenav a:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(47, 57, 103, 0.4);
}

/* Galeri Nokta Navigasyonu */
.product-gallery-slide .uk-dotnav {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-gallery-slide .uk-dotnav li a {
  background: rgba(47, 57, 103, 0.3);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.product-gallery-slide .uk-dotnav li.uk-active a {
  background: linear-gradient(135deg, #2f3967, #ee3131);
  transform: scale(1.2);
}

/* Doküman Kartları */
.product-document-card {
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  padding: 0.8rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #ee3131;
  margin-bottom: 0.5rem;
}

.product-document-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: rgba(255,255,255,1);
}

.product-document-icon {
  width: 35px;
  height: 35px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.8rem;
}

.product-document-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color) !important;
  margin: 0;
}

.product-document-button {
  background: linear-gradient(135deg, #2f3967, #ee3131);
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(47, 57, 103, 0.3);
}

.product-document-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(47, 57, 103, 0.4);
}

/* Boş Durum Kartları */
.product-empty-card {
  background: rgba(255,255,255,0.9);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px dashed #dee2e6;
  backdrop-filter: blur(10px);
}

.product-empty-card i {
  color: #adb5bd;
  margin-bottom: 1rem;
}

.product-empty-card p {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
}

/* Navigasyon */
.product-slider-nav {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-slider-nav a {
  background: linear-gradient(135deg, #2f3967, #ee3131);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(47, 57, 103, 0.3);
}

.product-slider-nav a:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(47, 57, 103, 0.4);
}

/* Nokta Navigasyonu */
.product-slider-dots {
  background: rgb(255 255 255 / 30%);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
}

.product-slider-dots li a {
  background: linear-gradient(135deg, #2f3967, #2f3967);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.product-slider-dots li.uk-active a {
  background: linear-gradient(135deg, #2f3967, #2f3967);
  transform: scale(1.2);
}

/* Responsive Tasarım */
@media (max-width: 960px) {
  .product-slider-container {
      height: 100vh;
  }
  
  .product-slide {
      height: 100vh;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .product-slide-container {
      height: 100vh;
  }
  
  .product-slide-content {
      height: 100vh;
  }
  
  .product-features-content,
  .product-gallery-content {
      height: 100vh;
  }
  
  .uk-slideshow-items {
      height: 100vh;
  }
  
  .uk-slideshow-items > li {
      height: 100vh;
      min-height: 100vh;
  }
  
  .product-hero-title {
      font-size: 2.2rem;
  }
  
  .product-features-title,
  .product-gallery-title {
      font-size: 1.8rem;
  }
  
  .product-feature-card {
      padding: 1.2rem;
      max-height: 180px;
  }
  
  .product-gallery-section {
      margin-bottom: 1rem;
      max-height: 250px;
  }
}

@media (max-width: 639px) {
  .product-slider-container {
      height: 100vh;
      margin: 0;
      border-radius: 0;
      box-shadow: none;
  }
  
  .product-slide {
      min-height: 100vh;
      height: 100vh;
      padding: 1rem 0;
  }
  
  .product-slide-container {
      height: 100vh;
  }
  
  .product-slide-content {
      height: 100vh;
  }
  
  .product-features-content,
  .product-gallery-content {
      height: 100vh;
  }
  
  .uk-slideshow-items {
      height: 100vh;
  }
  
  .uk-slideshow-items > li {
      height: 100vh;
      min-height: 100vh;
  }
  
  .product-hero-title {
      font-size: 1.8rem;
      margin-bottom: 1rem;
  }
  
  .product-hero-description {
      font-size: 1rem;
      margin-bottom: 1.5rem;
  }
  
  .product-features-title,
  .product-gallery-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
  }
  
  .product-slider-title {
      font-size: 2rem;
  }
  
  .product-hero-button {
      padding: 12px 25px;
      font-size: 1rem;
  }
  
  .product-feature-card {
      max-height: 160px;
      padding: 1rem;
      margin-bottom: 1rem;
  }
  
  .product-features-mobile-list {
      max-height: 100vh;
      padding: 0 0.5rem;
  }
  
  .product-feature-mobile-item {
      padding: 0.8rem;
      margin-bottom: 0.8rem;
  }
  
  .product-feature-mobile-icon {
      width: 30px;
      height: 30px;
      margin-right: 0.8rem;
  }
  
  .product-feature-mobile-icon i {
      font-size: 0.9rem;
  }
  
  .product-feature-mobile-title {
      font-size: 1rem;
      margin-bottom: 0.3rem;
  }
  
  .product-feature-mobile-description {
      font-size: 0.85rem;
  }
  
  .product-empty-mobile {
      padding: 1.5rem;
      margin: 0 0.5rem;
  }
  
  .product-gallery-section {
      max-height: 200px;
      margin-bottom: 1rem;
  }
  
  .product-gallery-image img {
      height: 80px;
  }
  
  .product-document-card {
      padding: 0.6rem;
      margin-bottom: 0.5rem;
  }
  
  .product-document-title {
      font-size: 0.8rem;
  }
  
  .product-document-button {
      padding: 4px 8px;
      font-size: 0.8rem;
  }
  
  .product-slider-nav {
      display: none;
  }
  
  .product-slider-dots {
      bottom: 20px;
  }
}

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

.productsMargin{
  margin-top: -180px;
}
.product-slide-content {
  animation: fadeInUp 0.6s ease-out;
}

/* Özel Scroll Bar */
.product-slider-container::-webkit-scrollbar,
.product-gallery-section::-webkit-scrollbar {
  width: 6px;
}

.product-slider-container::-webkit-scrollbar-track,
.product-gallery-section::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
  border-radius: 3px;
}

.product-slider-container::-webkit-scrollbar-thumb,
.product-gallery-section::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #2f3967, #ee3131);
  border-radius: 3px;
}

.product-slider-container::-webkit-scrollbar-thumb:hover,
.product-gallery-section::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ee3131, #2f3967);
}


.uk-card-primary.uk-card-body .uk-slidenav, .uk-card-primary>:not([class*=uk-card-media]) .uk-slidenav, .uk-card-secondary.uk-card-body .uk-slidenav, .uk-card-secondary>:not([class*=uk-card-media]) .uk-slidenav, .uk-light .uk-slidenav, .uk-offcanvas-bar .uk-slidenav, .uk-overlay-primary .uk-slidenav, .uk-section-primary:not(.uk-preserve-color) .uk-slidenav, .uk-section-secondary:not(.uk-preserve-color) .uk-slidenav, .uk-tile-primary:not(.uk-preserve-color) .uk-slidenav, .uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav {
  color: var(--primary-color) !important;
}


  .uk-slideshow-items {
      height: 60vh;
  }
  .product-slide{
    min-height: auto
  }


/* ===== HABERLER BÖLÜMÜ CSS ===== */

/* Haberler Bölümü Ana Container */
.news-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

/* Bölüm Başlığı */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.title-underline::before,
.title-underline::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.title-underline::before {
  left: -30px;
}

.title-underline::after {
  right: -30px;
}


.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  z-index: 2;
}

.news-card:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Haber Resmi */
.news-image {
  position: relative;
  overflow: hidden;
}

.news-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.news-card:hover .news-thumbnail {
  transform: scale(1.1);
}

.news-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(47, 57, 103, 0.5), rgba(115, 49, 238, 0.3));
  opacity: 0;
  transition: all 0.4s ease;
}

.news-card:hover .news-image::after {
  opacity: 1;
}

/* Haber İçeriği */
.news-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  background: rgba(238, 49, 49, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border-left: 3px solid #ee3131;
}

.news-date i {
  color: #ee3131;
  font-size: 0.8rem;
}

/* Haber Başlığı */
.news-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.news-title a {
  color: #2f3967;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Haber Özeti */
.news-excerpt {
  color: #222527;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* Devamını Oku Butonu */
.news-action {
  margin-top: auto;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 20px;
  border-bottom: 2px solid transparent;
}

.news-read-more:hover {
  color: white;
  border-bottom-color: #2f3967;
  transform: translateX(5px);
}

.news-read-more i {
  transition: all 0.3s ease;
}

.news-read-more:hover i {
  transform: translateX(3px);
}
/* Responsive Haberler */
@media (max-width: 960px) {
  .section-title {
      font-size: 2rem;
  }
  
  .news-card {
      margin-bottom: 1.5rem;
  }
  
  .news-content {
      padding: 1.2rem;
  }
  
  .news-title {
      font-size: 1.2rem;
  }
}

@media (max-width: 639px) {
  .section-title {
      font-size: 1.8rem;
  }
  
  .news-section {
      padding: 3rem 0;
  }
  
  .news-card {
      margin-bottom: 1rem;
  }
  
  .news-image {
      height: 180px;
  }
  
  .news-content {
      padding: 1rem;
  }
  
  .news-title {
      font-size: 1.1rem;
      margin-bottom: 0.8rem;
  }
  
  .news-excerpt {
      font-size: 0.9rem;
      margin-bottom: 1rem;
  }
  
  .view-all-news-btn {
      padding: 12px 25px;
      font-size: 0.9rem;
  }
}

/* Haberler Animasyonları */
@keyframes slideInUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.news-card {
  animation: slideInUp 0.6s ease-out;
}

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

/* ===== TEMSİLCİLİKLER BÖLÜMÜ CSS ===== */

.borderTm{
  border:solid 5px rgb(233, 233, 233);
  padding: 10px !important;
}

.brand-item {
  padding: 10px;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  align-items: center;
  margin: 10px 0px;
}

.brand-item:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Temsilcilik Linki */
.brand-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-link:hover {
  text-decoration: none;
}

/* Temsilcilik Logosu */
.brand-logo {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.brand-item:hover .brand-logo {
  filter: grayscale(0%) brightness(1);
}

/* Temsilcilik Placeholder (Logo Yoksa) */
.brand-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6c757d;
  transition: all 0.3s ease;
}

.brand-placeholder i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #adb5bd;
  transition: all 0.3s ease;
}

.brand-placeholder span {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-item:hover .brand-placeholder {
  color: #2f3967;
}

.brand-item:hover .brand-placeholder i {
  color: #ee3131;
  transform: scale(1.1);
}

/* Slider Navigasyon */
.brands-section .uk-slidenav {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-section .uk-slidenav a {
  background: linear-gradient(135deg, #2f3967, #ee3131);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(47, 57, 103, 0.3);
}

.brands-section .uk-slidenav a:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(47, 57, 103, 0.4);
}

/* Responsive Temsilcilikler */
@media (max-width: 960px) {
  .brands-section {
    padding: 3rem 0;
  }
  
  .brand-item {
    height: 100px;
    padding: 1.5rem 1rem;
  }
  
  .brand-logo {
    max-height: 60px;
  }
  
  .brand-placeholder i {
    font-size: 1.5rem;
  }
  
  .brand-placeholder span {
    font-size: 0.8rem;
  }
}

@media (max-width: 639px) {
  .brands-section {
    padding: 2rem 0;
  }
  
  .brand-item {
    height: 80px;
    padding: 1rem 0.8rem;
  }
  
  .brand-logo {
    max-height: 50px;
  }
  
  .brand-placeholder i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .brand-placeholder span {
    font-size: 0.7rem;
  }
  
  .brands-section .uk-slidenav {
    display: none;
  }
}

/* Temsilcilikler Animasyonları */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.brand-item {
  animation: fadeInScale 0.6s ease-out;
}

.brand-item:nth-child(1) { animation-delay: 0.1s; }
.brand-item:nth-child(2) { animation-delay: 0.2s; }
.brand-item:nth-child(3) { animation-delay: 0.3s; }
.brand-item:nth-child(4) { animation-delay: 0.4s; }
.brand-item:nth-child(5) { animation-delay: 0.5s; }
.brand-item:nth-child(6) { animation-delay: 0.6s; }
.brand-item:nth-child(7) { animation-delay: 0.7s; }
.brand-item:nth-child(8) { animation-delay: 0.8s; }
.brand-item:nth-child(9) { animation-delay: 0.9s; }
.brand-item:nth-child(10) { animation-delay: 1.0s; }


/* Hero Video Styles */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* Modern Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 0;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.cookie-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(238, 49, 49, 0.3);
  animation: cookiePulse 2s ease-in-out infinite;
}

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

.cookie-text {
  flex: 1;
}

.cookie-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  font-family: 'Avenir Next LT Pro', sans-serif;
}

.cookie-message {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
}

.cookie-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Avenir Next LT Pro', sans-serif;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(238, 49, 49, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 49, 49, 0.4);
  color: white;
  text-decoration: none;
}

.cookie-btn-policy {
  background: rgba(47, 57, 103, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(47, 57, 103, 0.2);
}

.cookie-btn-policy:hover {
  background: rgba(47, 57, 103, 0.15);
  transform: translateY(-1px);
  color: var(--primary-color);
  text-decoration: none;
}

.cookie-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close:hover {
  background: rgba(238, 49, 49, 0.1);
  color: var(--primary-color);
  transform: rotate(90deg);
}

/* Cookie Banner Responsive */
@media (max-width: 960px) {
  .cookie-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
  
  .cookie-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .cookie-container {
    padding: 15px;
  }
  
  .cookie-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .cookie-title {
    font-size: 16px;
  }
  
  .cookie-message {
    font-size: 13px;
  }
  
  .cookie-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-btn {
    width: 100%;
    padding: 10px 15px;
    font-size: 13px;
  }
}

/* Products Dropdown Styles */
.products-dropdown {
  min-width: 200px;
}

.products-categories .category-item {
  position: relative;
}

.products-categories .category-item:hover .products-submenu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.products-categories .category-link {
  position: relative;
  padding-right: 20px;
}

.products-categories .category-link::after {
  content: '›';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.products-categories .category-item:hover .category-link::after {
  color: var(--primary-color);
  transform: translateY(-50%) translateX(2px);
}

/* Products Submenu */
.products-submenu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
  min-width: 350px;
  max-width: 400px;
  position: absolute !important;
  z-index: 10000 !important;
  left: calc(100% + 10px) !important;
  top: 0 !important;
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  transform: translateX(-10px) !important;
  transition: all 0.3s ease !important;
}

.products-submenu-container {
  padding: 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 15px;
}

.product-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.product-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  padding: 10px;
}

.product-image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--background-light) 0%, #f8f9fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-item:hover .product-image img {
  transform: scale(1.1);
}

.product-no-image {
  color: var(--text-light);
  font-size: 20px;
}

.product-no-image i {
  opacity: 0.3;
}

.product-info {
  flex: 1;
  min-width: 0;
}

.product-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 4px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-excerpt {
  font-size: 11px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-submenu-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  text-align: center;
}

.view-all-products {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 15px;
  background: rgba(238, 49, 49, 0.1);
  transition: all 0.3s ease;
}

.view-all-products:hover {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.view-all-products i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.view-all-products:hover i {
  transform: translateX(2px);
}

/* Products Submenu Animation */
@keyframes productFadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-item {
  animation: productFadeIn 0.3s ease-out;
}

.product-item:nth-child(1) { animation-delay: 0.05s; }
.product-item:nth-child(2) { animation-delay: 0.1s; }
.product-item:nth-child(3) { animation-delay: 0.15s; }
.product-item:nth-child(4) { animation-delay: 0.2s; }
.product-item:nth-child(5) { animation-delay: 0.25s; }
.product-item:nth-child(6) { animation-delay: 0.3s; }

/* Edge detection for submenu positioning */
@media (max-width: 1400px) {
  .products-submenu {
    left: calc(-100% - 10px) !important;
  }
  
  .products-categories .category-item:hover .products-submenu {
    transform: translateX(0) !important;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .products-submenu {
    display: none !important;
  }
}




.icsayfapd {
  padding-top: 200px;
  min-height: 1300px;
}
.iletisimspd {
  padding-top: 200px;
}

@media (max-width: 1200px) {
  .icsayfapd {
    padding-top: 150px;
  }
}

@media (max-width: 960px) {
  .icsayfapd {
    padding-top: 120px;
  }
}

@media (max-width: 600px) {
  .icsayfapd {
    padding-top: 100px;
  }
}

/* ============================================
   MEGA MENU STYLES
   ============================================ */

/* Mega Menu Dropdown */
.mega-menu-dropdown {
  width: 800px !important;
  min-width: 800px !important;
  max-width: 800px !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(15px);
  border: none;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-top: 20px;
}

.mega-menu-dropdown-sticky {
  width: 700px !important;
  min-width: 700px !important;
  max-width: 700px !important;
}

.mega-menu-container {
  display: flex;
  min-height: 300px;
}

.mega-menu-dropdown-sticky .mega-menu-container {
  min-height: 250px;
}

/* Sol taraf: Kategoriler */
.mega-menu-categories {
  flex: 1;
  padding: 25px;
  background: linear-gradient(135deg, rgba(57, 49, 133, 0.02) 0%, rgba(15, 99, 247, 0.02) 100%);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.mega-menu-dropdown-sticky .mega-menu-categories {
  padding: 20px;
}

.mega-menu-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
}

.mega-menu-dropdown-sticky .mega-menu-title {
  font-size: 14px;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.mega-menu-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mega-menu-categories .uk-nav {
  margin: 0;
  padding: 0;
}

.mega-menu-categories .uk-nav > li {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-menu-categories .uk-nav > li:last-child {
  border-bottom: none;
}

.mega-menu-categories .uk-nav > li > a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 0;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: block;
  text-decoration: none;
  border-left: 3px solid transparent;
}

.mega-menu-dropdown-sticky .mega-menu-categories .uk-nav > li > a {
  font-size: 13px;
  padding: 10px 0;
}

.mega-menu-categories .uk-nav > li > a:hover {
  color: var(--primary-color);
  background: linear-gradient(90deg, rgba(57, 49, 133, 0.08) 0%, rgba(57, 49, 133, 0.02) 100%);
  border-left-color: var(--primary-color);
  padding-left: 15px;
  transform: translateX(5px);
  text-decoration: none;
}

.mega-menu-categories .uk-nav > li > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu-categories .uk-nav > li > a:hover::before {
  width: 3px;
}

.mega-menu-categories .uk-nav > li > a::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  opacity: 0;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu-categories .uk-nav > li > a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Sağ taraf: Ürünler */
.mega-menu-products {
  flex: 1.5;
  padding: 25px;
  background: white;
}

.mega-menu-dropdown-sticky .mega-menu-products {
  padding: 20px;
}

.mega-menu-products .mega-menu-title {
  margin-bottom: 15px;
}

.mega-menu-dropdown-sticky .mega-menu-products .mega-menu-title {
  margin-bottom: 12px;
}

.mega-menu-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  overflow-y: auto;
  padding-right: 5px;
  max-height: 450px;
}

.mega-menu-dropdown-sticky .mega-menu-products-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-height: 450px;
  padding-right: 5px;
}

/* Ürün öğesi */
.mega-menu-product-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: productFadeIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.mega-menu-product-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.mega-menu-product-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.mega-menu-product-image {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #f8f9fa;
  transition: transform 0.3s ease;
}



.mega-menu-product-title {
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
  line-height: 1.3;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
  overflow: hidden;
}

.mega-menu-dropdown-sticky .mega-menu-product-title {
  padding: 10px 6px;
  font-size: 11px;
}

/* Scrollbar styling */
.mega-menu-products-grid::-webkit-scrollbar {
  width: 4px;
}

.mega-menu-products-grid::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}

.mega-menu-products-grid::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 2px;
}

.mega-menu-products-grid::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 1200px) {
  .mega-menu-dropdown {
    width: 700px !important;
    min-width: 700px !important;
    max-width: 700px !important;
  }
  
  .mega-menu-container {
    min-height: 250px;
  }
  
  .mega-menu-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 960px) {
  .mega-menu-dropdown {
    display: none !important;
  }
  .imageMobile{
    background-position: center !important;
    background-size: cover !important;
  }
  .parallax-bg{
    background-position: center center !important;
  }
  .mobileMacHeight{
    min-height: calc(100vh) !important; 
    max-height: calc(100vh) !important;
  }
  .hero-content{
    margin-top:10vh !important;
  }
  .productsMargin{
    margin-top: 0px !important;
  }  
  .product-features-mobile-list{
    min-height: 100% !important;
  }
  .uk-slideshow-items {
    min-height: 100vh !important;
  }
  .product-hero-title{
    font-size: 20px !important;
    text-align: center !important;
  }
  .product-hero-description{
    text-align: center !important;
  }  
  .product-hero-content div {
    text-align: center !important;
  }
  .product-slider-dots{
    display: none !important;
  }
}

/* Animation for mega menu */
@keyframes megaMenuFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mega-menu-dropdown {
  animation: megaMenuFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover state için glow effect */
.mega-menu-dropdown:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(57, 49, 133, 0.1);
}

/* Ürün bulunamadı mesajı */
.mega-menu-no-products {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.mega-menu-dropdown-sticky .mega-menu-no-products {
  padding: 30px 15px;
  font-size: 13px;
}