/* =============================
   1. HERO BÖLÜMÜ
============================= */
.hero-section {
  position: relative;
  height: 85vh;
  color: var(--pure-white);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
  z-index: 5;
  overflow: hidden; 
}

.swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 46, 54, 0.6); 
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 20px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.9);
}

/* =============================
   İÇERİK ANİMASYONU (THANOS EFEKTİ TAKLİDİ)
============================= */
.hero-content > * {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.content-disappearing > * {
    transform: scale(0.8) translateY(20px);
    filter: blur(5px);
    opacity: 0;
}

/* =============================
   SLIDER NAVİGASYON STİLLERİ
============================= */
.hero-section {
    --swiper-navigation-color: #fff;
    --swiper-pagination-color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: rgba(0, 0, 0, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

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

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--accent-orange);
    transform: scale(1.2);
}

/* =============================
   2. ÖNE ÇIKAN İLANLAR BÖLÜMÜ
============================= */
.featured-properties {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* =============================
   3. NEDEN BİZ? BÖLÜMÜ
============================= */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--pure-white);
}

.wcu-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.wcu-image {
    flex: 1;
    max-width: 50%;
}

.wcu-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.wcu-content {
    flex: 1;
}

.wcu-content .subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.wcu-content .title {
    font-size: 42px;
    margin-bottom: 15px;
}

.wcu-content .description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.wcu-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wcu-features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.wcu-features-list .icon {
    font-size: 24px;
    color: var(--accent-orange);
    margin-right: 20px;
    margin-top: 5px;
}

.wcu-features-list h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.wcu-features-list p {
    margin: 0;
    color: var(--neutral-gray);
}

/* =============================
   4. CTA (İLETİŞİME GEÇ) BÖLÜMÜ
============================= */
@keyframes cta-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.cta-section {
    padding: 70px 40px;
    background-color: var(--primary-blue);
    text-align: center;
    max-width: 1200px;
    margin: 60px auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 74, 153, 0.2);
    animation: cta-float 5s ease-in-out infinite;
}

.cta-content .title {
    font-size: 38px;
    color: var(--pure-white);
    margin-bottom: 15px;
}

.cta-content .description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* =============================
   ANASAYFA MOBİL UYUMLULUK
============================= */
@media (max-width: 992px) {
    .wcu-container {
        flex-direction: column;
        gap: 40px;
    }
    .wcu-image {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 38px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .wcu-content .title, .cta-content .title {
        font-size: 32px;
    }
}