.section-space{
  overflow: hidden;
}

/* Hero Section - Sıfırdan */
.hero-section {
  background-color: #0047AB;
  min-height: 850px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-swiper {
  width: 100%;
  height: 100%;

}

.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-swiper .swiper-slide-active {
  opacity: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-left {
  flex: 1;
  color: white;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: white;
}

.hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 64px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-button {
  background: #C11938;
  border: none;
  padding: 22px 30px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 47px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-button:hover {
  transform: translateY(-3px);
  text-decoration: none;
  color: white;
}

/* Hero Slider Navigation */
.hero-slider-nav {
  margin-top: 148px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-dots {
  display: flex;
  gap: 18px;
}

.hero-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.hero-dot.active {
  background: white;
}

.hero-arrows {
  display: flex;
  gap: 15px;
}

.hero-prev,
.hero-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  border-radius: 8px;
  position: absolute;
  bottom:-330px;
  right:-200px;

}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero Absolute Elements */
.hero-absolute-element {
  position: absolute;
  width: 108px;
  height: 108px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 10;
  animation: elementPulse 3s ease-in-out infinite;
}

.hero-absolute-element::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, 0.6);
  animation: elementOutline 3s ease-in-out infinite;
  z-index: -1;
}

.hero-absolute-element.element-2::before {
  border: 50px solid rgba(193, 25, 56, 0.5);
}

.hero-absolute-element .hero-icon {
  color: #C11938;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-absolute-element .hero-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #C11938;
  font-weight: 500;
  text-align: center;
}

.hero-absolute-element.element-1 {
  top: 35%;
  left: 12%;
}

.hero-absolute-element.element-2 {
  bottom: 35%;
  right: 20%;
  background: #C11938;
}

.hero-absolute-element.element-2 .hero-text {
  color: white;
}

.section-type-1{
  background-color: #EDF3FF;
}

.section-type-1 .image-container svg{
  width: calc(100% + 212px);
  height: calc(100% + 212px);
  left: calc(-212px / 2);
  top: calc(-212px / 2);
}

.commercial-credit{
  display: flex;
  flex-direction: column;
  margin-left: 150px;
}

@media (max-width: 768px) {
  .commercial-credit{
    margin-left: 0;
  }
}

.commercial-credit-header{
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  padding-left: 45px;
}

@media (max-width: 768px) {
  .commercial-credit-header{
    margin: 20px 0;
    font-size: 32px;
    padding-left: 15px;
  }
}

.commercial-credit-main{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.commercial-credit-main > img{
  position: absolute;
  left: 83px;
  top: 30px;
}

.commercial-credit-step{
  display: flex;
  align-items: center;
  margin: -30px 0 -20px;
  z-index: 1;
}

.commercial-credit-step-right{
  display: flex;
  flex-direction: column;
  width: 490px;
  margin-left: -20px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .commercial-credit-step-right{
    margin-right: auto;
  }
}

.commercial-credit-step-right .title{
  color: #C11938;
}

.commercial-credit-step-right .desc{
}

@media (max-width: 768px) {
  .commercial-credit-step-right .desc{
    display: none;
  }
}

.commercial-button{
  max-width: 217px; 
  margin-left: 45px; 
  padding: 0 15px; 
  height: 55px;
}

.section-swiper{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.swiper-container{
  width: 100%;
  position: relative;
}

.swiper-content{
  position: relative;
}

/* Sektörlerimiz Slider Styles */
.sectors-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.sectors-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #000;
  margin-bottom: 50px;
}

.sectors-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.sectors-swiper {
  
  overflow: hidden;
  border-radius: 8px;
}

.sector-card {
  padding:40px 30px;
  width: 390px;
  height: 500px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
}

/* Gradient overlay sadece altta */
.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
  z-index: 1;
}

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

.sector-card:hover .sector-subtitle {
  text-decoration: underline;
}

/* Artık gerekli değil - container'da radius var */



.sector-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  z-index: 2;
}

.sector-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
}

.sector-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  opacity: 0.9;
  font-weight: 500;
}

.sectors-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.sectors-prev,
.sectors-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid #C11938;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #C11938;
}

.sectors-prev:hover,
.sectors-next:hover {
  background: #C11938;
  color: white;
  transform: scale(1.1);
}

.sectors-prev {
  margin-left: -125px;
}

.sectors-next {
  margin-right: -125px;
}

/* Custom Slider Buttons */
.custom-slider-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 18px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #C11938;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  transform: scale(1.1);
}

.slider-dot.active {
  background: #C11938;
}

/* Sector Title ve Subtitle Link Styles */
.sector-title-link,
.sector-subtitle-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.sector-title-link:hover,
.sector-title-link:focus,
.sector-title-link:active,
.sector-title-link:visited,
.sector-subtitle-link:hover,
.sector-subtitle-link:focus,
.sector-subtitle-link:active,
.sector-subtitle-link:visited {
  text-decoration: none !important;
  color: inherit !important;
  border: none !important;
  outline: none !important;
  background: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.swiper-content .text{
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 16px;
}

.swiper-content .text a{
  text-decoration: underline;
  color: #fff;
  font-size: 12px;
}

.swiper-button-next,
.swiper-button-prev{
  width: 50px;
  height: 50px;
}

.swiper-button-next{
  rotate: 180deg;
}

.swiper-button-next::after,
.swiper-button-prev::after{
  display: none;
}

.choice-box {
    display: flex;
    margin-left: 20px;
    background-color: #F5F5F5;
    border-radius: 8px;
    overflow: hidden;
    padding: 2px;
}

.choice-box a {
    color: #8F8F8F;
    font-size: 14px;
    padding: 5px 25px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.choice-box a.active {
    background-color: #fff;
    color: #C11938;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.section-with-color{
  background-color: #EDF3FF;
  padding-bottom: 150px;
}

.contracted-brands .brand-list .brand-list-item{
  border: 4px solid #C1193826;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.contracted-brands .brand-list .brand-list-item .brand-list-item-header .brand-list-item-title{
  margin-left: 25px;
}

.contracted-brands .brand-list .brand-list-item.uk-open .brand-list-item-header{
  border-color: #C1193826;
}

.contracted-brands .brand-list .brand-list-item .brand-list-item-header .brand-list-item-toggle{
  rotate: 90deg;
}

.contracted-brands .brand-list .brand-list-item.uk-open .brand-list-item-header .brand-list-item-toggle{
  rotate: 180deg;
}

.icon-ticari{
  position: absolute;
  top: -32px;
  left: 4px;
  background-color: #fff;
  padding: 16px;
  z-index: 1;
  box-shadow: 0px 15px 50px 0px #0000001A;
  border-radius: 50%;
}

.section-advantage{
  display: flex;
  justify-content: space-between;
}

.section-advantage-hero-image{
  width: 500px;
  height: 600px;
}

.section-advantage-right img{
  width: 32px;
  height: 32px;
}

.section-advantage-right{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.section-advantage-right-title{
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}

.section-advantage-item{
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-advantage-item-right{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section-advantage-item-right .title{
  color: #C11938;
  font-weight: 600;
}

.section-advantage-item-right span{
  color: #666666;
  font-weight: 400;
}

.section-advantage a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 50px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .choice-box{
    display: none;
  }
  .section-with-color{
    padding-bottom: 50px;
  }
  .contracted-brands .brand-list .brand-list-item .brand-list-item-header .brand-list-item-title{
    margin-left: 0;
  }
  .section-advantage{
    flex-direction: column;
  }
   .section-advantage-hero-image{
    width: 100%;
    height: auto;
  }
  .section-advantage-right-title{
    font-size: 32px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .section-advantage a{
    width: 100%;
  }
}

@keyframes elementPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(193, 25, 56, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(193, 25, 56, 0);
  }
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    margin: 0 15px;
    padding: 20px 0;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
  }
  
  .hero-left {
    width: 100%;
    text-align: left;
  }
  
  .hero-title {
    font-size: 24px;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 40px;
  }
  
  .hero-right {
    width: 100%;
    order: 1;
  }
  
  .hero-left {
    order: 2;
  }
  
  .hero-image {
    height: 300px;
    position: relative;
    bottom: auto;
    right: auto;
  }
  
  /* Mobilde absolute element'leri gizle */
  .hero-absolute-element {
    display: none;
  }

  .hero-slider-nav {
    margin-top: 48px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sectors-section {
    padding: 60px 0;
  }
  
  .sector-card {
    width: 300px;
    height: 400px;
  }
  
  .sector-title {
    font-size: 20px;
  }
  
  .sector-subtitle {
    font-size: 12px;
  }
  
  .sectors-prev,
  .sectors-next {
    width: 40px;
    height: 40px;
  }
  
  .sectors-prev {
    margin-left: -20px;
  }
  
  .sectors-next {
    margin-right: -20px;
  }
}

@media (max-width: 480px) {
  .sector-card {
    width: 250px;
    height: 350px;
  }
  
  .sector-content {
    bottom: 20px;
    left: 20px;
  }
  
  .sector-title {
    font-size: 18px;
  }
}

/* Mobilde sol sağ butonları gizle */
@media (max-width: 768px) {
  .sectors-navigation {
    display: none;
  }
}


