/* EKİP Brand Colors */
/* 
Dark Blue: #1a3a52
Orange: #FF6B35
Teal: #00B5A8
Bright Blue: #0066CC
*/

:root {
  --ekip-dark-blue: #1a3a52;
  --ekip-orange: #FF6B35;
  --ekip-teal: #00B5A8;
  --ekip-bright-blue: #0066CC;
  --ekip-black: #000000;
}

/* ============================================
   SİTE GENELİ BUTON STİLLERİ - PROFESYONEL TASARIM
   ============================================ */

/* Genel Buton Temel Özellikler - Tüm Butonlar İçin */
.theme-btn {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
}

.theme-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.theme-btn:hover::before {
  left: 100%;
}

.theme-btn > * {
  position: relative;
  z-index: 2;
}

/* Buton İkon Animasyonları - Orijinal döndürme animasyonunu koruyoruz */
.theme-btn i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
}

/* İkon döndürme animasyonunu sadece hover'da ekstra efekt için kullanıyoruz */
.theme-btn:hover i {
  transform: translateX(2px);
}

/* btn-style-one - Ana Buton (Turuncu Gradient) */
.theme-btn.btn-style-one {
  background: linear-gradient(135deg, var(--ekip-orange) 0%, #ff8c5a 100%);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25), 
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: none;
  position: relative;
}

.theme-btn.btn-style-one::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.theme-btn.btn-style-one:hover {
  background: linear-gradient(135deg, #e55a2b 0%, var(--ekip-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35), 
              0 4px 8px rgba(255, 107, 53, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff !important;
}

.theme-btn.btn-style-one:hover::after {
  opacity: 1;
}

/* btn-style-three - İkincil Buton (Outline Style) */
.theme-btn.btn-style-three {
  border: 2px solid var(--ekip-dark-blue) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  color: var(--ekip-dark-blue) !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(26, 58, 82, 0.1), 
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.theme-btn.btn-style-three:hover {
  background: var(--ekip-dark-blue) !important;
  border-color: var(--ekip-dark-blue) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 58, 82, 0.25), 
              0 2px 4px rgba(26, 58, 82, 0.15);
}

/* btn-style-two - Sarı Buton (EKİP Turuncu ile güncellendi) */
.theme-btn.btn-style-two {
  background: linear-gradient(135deg, var(--ekip-orange) 0%, #ff8c5a 100%);
  color: #fff !important;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25), 
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.theme-btn.btn-style-two:hover {
  background: linear-gradient(135deg, #e55a2b 0%, var(--ekip-orange) 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35), 
              0 4px 8px rgba(255, 107, 53, 0.2);
}

/* btn-style-four - Yeşil Buton (EKİP Teal ile güncellendi) */
.theme-btn.btn-style-four {
  background: linear-gradient(135deg, var(--ekip-teal) 0%, #00d4c4 100%);
  color: #fff !important;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 181, 168, 0.25), 
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.theme-btn.btn-style-four:hover {
  background: linear-gradient(135deg, #009688 0%, var(--ekip-teal) 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 181, 168, 0.35), 
              0 4px 8px rgba(0, 181, 168, 0.2);
}

/* btn-style-five - Beyaz Outline Buton */
.theme-btn.btn-style-five {
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.theme-btn.btn-style-five:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--ekip-dark-blue) !important;
  border-color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* btn-style-six - Beyaz Outline Buton (Karanlık arka planlar için) */
.theme-btn.btn-style-six {
  border: 2px solid #fff !important;
  background: transparent !important;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.theme-btn.btn-style-six:hover {
  background: #fff !important;
  color: var(--ekip-dark-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* btn-style-seven - Teal Buton (Alternatif) */
.theme-btn.btn-style-seven {
  background: var(--ekip-teal);
  color: #fff !important;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 181, 168, 0.25), 
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.theme-btn.btn-style-seven:hover {
  background: linear-gradient(135deg, #009688 0%, var(--ekip-teal) 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 181, 168, 0.35), 
              0 4px 8px rgba(0, 181, 168, 0.2);
}

/* btn-style-eight - Kırmızı/Uyarı Butonu */
.theme-btn.btn-style-eight {
  background: rgba(217, 48, 37, 0.1);
  color: #d93025 !important;
  font-weight: 600;
  border: 2px solid rgba(217, 48, 37, 0.3);
  box-shadow: 0 2px 8px rgba(217, 48, 37, 0.1);
}

.theme-btn.btn-style-eight:hover {
  background: #d93025 !important;
  color: #fff !important;
  border-color: #d93025 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 48, 37, 0.3), 
              0 2px 4px rgba(217, 48, 37, 0.2);
}

/* btn-style-nine - Şeffaf Buton */
.theme-btn.btn-style-nine {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.theme-btn.btn-style-nine:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--ekip-dark-blue) !important;
  border-color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Colored Text */
.colored {
  color: var(--ekip-orange);
}

/* Link Colors */
a {
  color: var(--ekip-dark-blue);
}

a:hover {
  color: var(--ekip-orange);
}

/* Section Titles */
.sec-title h2 {
  color: var(--ekip-dark-blue);
}

/* Job Categories Icons */
.category-block .content span.icon {
  color: var(--ekip-teal);
}

/* Job Block Styles */
.job-block .inner-box {
  border-top: 3px solid var(--ekip-orange);
}

/* Footer - Profesyonel Tasarım İyileştirmeleri */
.main-footer {
  background: linear-gradient(180deg, 
    var(--ekip-dark-blue) 0%, 
    #1f4258 40%, 
    #2d4a65 100%);
  background-color: var(--ekip-dark-blue);
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 181, 168, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.main-footer.alternate {
  background: linear-gradient(180deg, 
    var(--ekip-dark-blue) 0%, 
    #1f4258 40%, 
    #2d4a65 100%);
}

.main-footer .auto-container {
  position: relative;
  z-index: 1;
}

.main-footer .widgets-section {
  padding: 80px 0 50px;
}

/* About Widget - Logo ve İletişim */
.main-footer .footer-column.about-widget {
  padding-right: 40px;
}

.main-footer .footer-column.about-widget .logo {
  margin-bottom: 25px;
}

.main-footer .footer-column.about-widget .logo img {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.main-footer .footer-column.about-widget .logo:hover img {
  transform: scale(1.05);
}

.main-footer .footer-column.about-widget .text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

.main-footer .footer-column.about-widget .legal-links {
  margin-top: 25px;
}

.main-footer .footer-column.about-widget .legal-links .list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer .footer-column.about-widget .legal-links .list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.main-footer .footer-column.about-widget .legal-links .list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ekip-orange);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.main-footer .footer-column.about-widget .legal-links .list li:hover::before {
  transform: translateX(3px);
}

.main-footer .footer-column.about-widget .legal-links .list li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.main-footer .footer-column.about-widget .legal-links .list li a:hover {
  color: var(--ekip-orange);
  padding-left: 5px;
}

/* Widget Title */
.main-footer .widget-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.main-footer .widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--ekip-orange) 0%, var(--ekip-teal) 100%);
  border-radius: 2px;
}

.main-footer .widget-content {
  padding-top: 5px;
}

/* Footer List Links */
.main-footer .list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer .list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 0;
}

.main-footer .list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--ekip-orange);
  transition: width 0.3s ease;
}

.main-footer .list li:hover::before {
  width: 8px;
}

.main-footer .list li a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.main-footer .list li a:hover {
  color: var(--ekip-orange);
  transform: translateX(5px);
  padding-left: 25px;
}

/* Footer İletişim Bilgileri */
.main-footer .contact-info {
  color: rgba(255, 255, 255, 0.9);
}

.main-footer .contact-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.main-footer .contact-info p:last-child {
  margin-bottom: 0;
}

.main-footer .contact-info p.address-line {
  align-items: flex-start;
}

.main-footer .contact-info p.address-line i {
  margin-top: 3px;
}

.main-footer .contact-info i {
  margin-right: 10px;
  color: var(--ekip-orange);
  font-size: 18px;
  min-width: 20px;
}

.main-footer .contact-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.main-footer .contact-info a:hover {
  color: var(--ekip-orange);
  padding-left: 3px;
}

.main-footer .contact-info span {
  line-height: 1.6;
}

/* Main Header Container Width Fix */
.main-header .main-box {
  max-width: 1310px;
}

/* Footer Bottom */
.main-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 0;
  position: relative;
}

.main-footer .footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 107, 53, 0.3) 20%, 
    rgba(0, 181, 168, 0.3) 50%, 
    rgba(255, 107, 53, 0.3) 80%, 
    transparent 100%);
}

.main-footer .copyright-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.main-footer .copyright-text a {
  color: var(--ekip-orange);
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.main-footer .copyright-text a:hover {
  color: #ffffff;
}

/* Social Links */
.main-footer .social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-footer .social-links a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.main-footer .social-links a:hover {
  background: var(--ekip-orange);
  border-color: var(--ekip-orange);
  color: #ffffff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Footer Column Spacing */
.main-footer .footer-column {
  margin-bottom: 30px;
}

.main-footer .footer-column.col-lg-3 {
  padding-right: 20px;
}

/* Footer Responsive */
@media (max-width: 1199px) {
  .main-footer .footer-column.col-lg-3 {
    padding-right: 15px;
  }
}

@media (max-width: 991px) {
  .main-footer .widgets-section {
    padding: 60px 0 40px;
  }
  
  .main-footer .footer-column.about-widget {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .main-footer .footer-bottom .outer-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .main-footer .social-links {
    justify-content: center;
  }
}

/* Background Colors */
.bg-blue {
  background-color: var(--ekip-bright-blue) !important;
}

/* Bookmark Button */
.bookmark-btn:hover {
  color: var(--ekip-orange);
}

/* Header Buttons - Professional Style (Header dışındaki butonlar için) */
.outer-box .btn-box .theme-btn {
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Header Butonları - Profesyonel Tasarım */
.outer-box .btn-box {
  gap: 12px;
  display: flex;
  align-items: center;
}

.outer-box .btn-box a {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.outer-box .btn-box .theme-btn {
  position: relative;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 130px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.outer-box .btn-box .theme-btn::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 ease;
}

.outer-box .btn-box .theme-btn:hover::before {
  left: 100%;
}

.outer-box .btn-box .theme-btn.btn-style-three {
  border: 2px solid var(--ekip-dark-blue);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--ekip-dark-blue);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(26, 58, 82, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.outer-box .btn-box .theme-btn.btn-style-three:hover {
  background: var(--ekip-dark-blue);
  color: #fff;
  border-color: var(--ekip-dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 58, 82, 0.25), 0 2px 4px rgba(26, 58, 82, 0.15);
}

.outer-box .btn-box .theme-btn.btn-style-one {
  background: linear-gradient(135deg, var(--ekip-orange) 0%, #ff8c5a 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}

.outer-box .btn-box .theme-btn.btn-style-one::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.outer-box .btn-box .theme-btn.btn-style-one:hover {
  background: linear-gradient(135deg, #e55a2b 0%, var(--ekip-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35), 0 4px 8px rgba(255, 107, 53, 0.2);
}

.outer-box .btn-box .theme-btn.btn-style-one:hover::after {
  opacity: 1;
}

.outer-box .btn-box .theme-btn i {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
}

.outer-box .btn-box .theme-btn:hover i {
  transform: translateX(2px);
}

.outer-box .btn-box .theme-btn span {
  font-weight: inherit;
  letter-spacing: 0.2px;
}

/* Job Search Form - Sadece buton stilini koruyoruz, input stili orijinal kalacak */
.job-search-form-two .btn-box .theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Banner Hover Effect - Kırmızı Border */
.banner-style-home22.at-home22:hover .inner-box,
.banner-style-home22.at-home22 .inner-box:hover {
  border: 2px solid #00386f !important;
  transition: border 0.3s ease;
}

.banner-style-home22.at-home22 {
  transition: all 0.3s ease;
}

.banner-style-home22.at-home22 .inner-box {
  transition: border 0.3s ease;
  border: 2px solid transparent;
}

/* Fun Fact Section Style Two - Zemin Rengi ve Site Uyumu */
.fun-fact-section.style-two {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f5f7 100%);
  background-color: #f8f9fa;
  border-top: 1px solid rgba(26, 58, 82, 0.1);
  border-bottom: 1px solid rgba(26, 58, 82, 0.1);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.fun-fact-section.style-two::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ekip-orange) 0%, var(--ekip-teal) 50%, var(--ekip-bright-blue) 100%);
  z-index: 1;
}

.fun-fact-section.style-two .auto-container {
  position: relative;
  z-index: 2;
}

.fun-fact-section.style-two .count-box.dark-color {
  color: var(--ekip-dark-blue);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fun-fact-section.style-two .counter-title {
  color: var(--ekip-dark-blue);
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
}

.fun-fact-section.style-two .counter-column {
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(26, 58, 82, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 2px solid transparent;
}

.fun-fact-section.style-two .counter-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 58, 82, 0.15);
  border-color: var(--ekip-orange);
}

.fun-fact-section.style-two .counter-column:hover .count-box {
  color: var(--ekip-orange);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.fun-fact-section.style-two .counter-column:hover .counter-title {
  color: var(--ekip-dark-blue);
}

@media (max-width: 991px) {
  .fun-fact-section.style-two {
    padding: 60px 0 40px;
  }
  
  .fun-fact-section.style-two .counter-column {
    margin-bottom: 20px;
  }
}

/* ============================================
   RENK VE TASARIM İYİLEŞTİRMELERİ (Header Dışı)
   ============================================ */

/* Section Title Renk İyileştirmeleri */
.sec-title h2 {
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--ekip-dark-blue);
}

.sec-title .text {
  color: #696969;
  font-size: 16px;
  line-height: 1.6;
}

/* Kategori Blokları - Renk ve Hover Efektleri */
.category-block-two.at-home22 .inner-box {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category-block-two.at-home22:hover .inner-box {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 58, 82, 0.12);
  border-color: var(--ekip-teal);
}

.category-block-two.at-home22 .icon {
  color: var(--ekip-teal);
  transition: all 0.3s ease;
}

.category-block-two.at-home22:hover .icon {
  transform: scale(1.1);
  color: var(--ekip-orange) !important;
}

.category-block-two.at-home22 h4 a {
  color: var(--ekip-dark-blue);
  transition: color 0.3s ease;
}

.category-block-two.at-home22:hover h4 a {
  color: var(--ekip-orange);
}

/* Job Block - Renk ve Hover İyileştirmeleri */
.job-block.at-jlv16 .inner-box {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.job-block.at-jlv16:hover .inner-box {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 58, 82, 0.15);
}

.job-block.at-jlv16.active .inner-box {
  border-left: 4px solid var(--ekip-orange);
}

.job-block.at-jlv16 .tags a:hover {
  color: var(--ekip-orange);
}

.job-block.at-jlv16 h4 a {
  color: var(--ekip-dark-blue);
  transition: color 0.3s ease;
}

.job-block.at-jlv16:hover h4 a {
  color: var(--ekip-orange);
}

/* Link Hover İyileştirmeleri */
.ud-btn2 {
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--ekip-dark-blue);
}

.ud-btn2:hover {
  color: var(--ekip-orange);
  transform: translateX(5px);
}

.ud-btn2 i {
  transition: transform 0.3s ease;
}

.ud-btn2:hover i {
  transform: translateX(5px);
}

/* Button Renk İyileştirmeleri - Yukarıdaki genel stiller kullanılıyor */

/* Subscribe Section - Renk İyileştirmeleri */
.subscribe-section.at-home22 {
  background: linear-gradient(135deg, var(--ekip-dark-blue) 0%, #2d4a65 100%);
  position: relative;
  overflow: hidden;
}

.subscribe-section.at-home22::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ekip-orange) 0%, var(--ekip-teal) 50%, var(--ekip-bright-blue) 100%);
  z-index: 1;
}

.subscribe-section.at-home22 .form-group input {
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.subscribe-section.at-home22 .form-group input:focus {
  border-color: var(--ekip-orange);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.subscribe-section.at-home22 .form-group .theme-btn.btn-style-one:hover {
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* CTA Section - Renk İyileştirmeleri */
.home22-cta-1 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid rgba(26, 58, 82, 0.1);
}

.home22-cta-2 {
  background: linear-gradient(135deg, var(--ekip-dark-blue) 0%, #2d4a65 100%);
  position: relative;
}

.home22-cta-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ekip-orange) 0%, var(--ekip-teal) 50%, var(--ekip-bright-blue) 100%);
}

.home22-cta-2 .title {
  color: #ffffff;
}

.home22-cta-2 .text-white {
  color: rgba(255, 255, 255, 0.9) !important;
}

.call-to-action.at-home22 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid rgba(26, 58, 82, 0.1);
  border-bottom: 1px solid rgba(26, 58, 82, 0.1);
}

.call-to-action.at-home22 .sec-title h2 {
  color: var(--ekip-dark-blue);
}

.call-to-action.at-home22 .sec-title .text {
  color: #696969;
}

/* Banner Section - Profesyonel Gradient */
.banner-section-three.at-home22 {
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #f8fafb 25%, 
    #f0f5f7 50%, 
    #ffffff 75%, 
    #f8f9fa 100%);
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.banner-section-three.at-home22::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(26, 58, 82, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 181, 168, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.banner-section-three.at-home22 .auto-container {
  position: relative;
  z-index: 1;
}

.banner-section-three.at-home22::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(26, 58, 82, 0.08) 20%, 
    rgba(26, 58, 82, 0.12) 50%, 
    rgba(26, 58, 82, 0.08) 80%, 
    transparent 100%);
  z-index: 1;
}

.banner-section-three.at-home22::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(26, 58, 82, 0.1) 50%, transparent 100%);
  z-index: 1;
}

.banner-section-three.at-home22 .title-box h3 {
  color: var(--ekip-dark-blue);
}

/* Popular Searches - Renk İyileştirmeleri */
.popular-searches a {
  color: var(--ekip-dark-blue);
  transition: color 0.3s ease;
}

.popular-searches a:hover {
  color: var(--ekip-orange);
}

/* Selection Color */
::selection {
  background-color: var(--ekip-orange);
  color: #ffffff;
}

::-moz-selection {
  background-color: var(--ekip-orange);
  color: #ffffff;
}



/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Preloader Renk */
.preloader {
  background: var(--ekip-dark-blue);
}


.main-footer .list li a {
  display: inline-block;
  color: #ffffff;
  transition: all 200ms ease;
}