/* ============================================================
   Locatepe Style Project Detail Page
   Birebir Locatepe Konakları tasarımı
   ============================================================ */

/* Swiper CSS - Header'a eklenecek ama burada da referans için */
.locatepe-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .locatepe-container {
        padding: 0 20px;
    }
}

/* Section 1: Hero Slider - Locatepe Birebir Tasarım */
.locatepe-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 80px;
}

.locatepe-hero-slider__container {
    width: 100%;
    height: 100%;
}

.locatepe-hero-swiper {
    width: 100%;
    height: 100%;
}

.locatepe-hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.locatepe-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.locatepe-hero-slide__image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.locatepe-hero-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.locatepe-hero-slide.swiper-slide-active .locatepe-hero-slide__image {
    filter: none;
    transform: scale(1);
}

.locatepe-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Merkez: Büyük Proje Adı */
.locatepe-hero-slide__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
}

/* Metin Pozisyonu Varyantları */
.locatepe-hero-slide__center--left {
    left: 0;
    transform: translate(0, -50%);
    text-align: left;
    padding-left: 60px;
}

.locatepe-hero-slide__center--right {
    left: auto;
    right: 0;
    transform: translate(0, -50%);
    text-align: right;
    padding-right: 60px;
}

.locatepe-hero-slide__center--center {
    /* Varsayılan - değişiklik yok */
}

.locatepe-hero-slide__main-title {
    font-size: clamp(48px, 12vw, 180px);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    color: #000000;
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-shadow: none;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.locatepe-hero-slide__sub-title {
    font-size: clamp(20px, 3vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    margin-top: 8px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sol Alt: Tagline */
.locatepe-hero-slide__left {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 2;
}

.locatepe-hero-slide__tagline {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.locatepe-hero-slide__tagline-line {
    display: block;
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease 0.7s forwards;
}

.locatepe-hero-slide__tagline-line:nth-child(2) {
    animation-delay: 0.9s;
}

.locatepe-hero-slide__tagline-line:nth-child(3) {
    animation-delay: 1.1s;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sağ Alt: Detaylı Bilgi Butonu */
.locatepe-hero-slide__right {
    position: absolute;
    bottom: 80px;
    right: 80px;
    z-index: 2;
}

.locatepe-hero-slide__cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease 0.7s forwards;
}

.locatepe-hero-slide__cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateX(0) scale(1.05);
}

.locatepe-hero-slide__cta-text {
    display: block;
}

.locatepe-hero-slide__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.locatepe-hero-slide__cta-icon svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
}

.locatepe-hero-slide__cta:hover .locatepe-hero-slide__cta-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Slider Pagination */
.locatepe-hero-pagination {
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
    width: auto !important;
}

.locatepe-hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.locatepe-hero-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 24px;
    border-radius: 5px;
}

/* Section 2: Tam Ekran Fotoğraf */
.locatepe-full-image {
    width: 100%;
    padding: 0;
    margin: 0;
}

.locatepe-full-image__container {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.locatepe-full-image__container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section 3: Detay Bilgi Alanları - Locatepe Style (Birebir) */
.locatepe-details {
    padding: 100px 0;
    background: #ffffff;
}

.locatepe-details__main-title {
    font-size: clamp(42px, 6vw, 96px);
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 30px 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    padding: 0 40px;
}

.locatepe-details__divider {
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background: #e0e0e0;
    margin: 0 auto 60px;
}

.locatepe-details__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.locatepe-details__left {
    display: flex;
    flex-direction: column;
}

.locatepe-details__right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.locatepe-details__text {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.locatepe-details__text--left {
    color: #000000;
    max-width: 100%;
}

.locatepe-details__text--right {
    color: #000000;
    max-width: 100%;
}

.locatepe-details__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    border: 1px solid #000000;
    border-radius: 0;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 0;
}

.locatepe-details__button:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
    transform: translateX(4px);
}

.locatepe-details__button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.locatepe-details__button:hover i {
    transform: translateX(4px);
}

/* Section 4: Galeri Slider - Locatepe Style (Minimal - Birebir) */
.locatepe-gallery-minimal {
    padding: 0;
    background: #ffffff;
    position: relative;
    width: 100%;
}

.locatepe-gallery-divider {
    width: 100%;
    padding: 0;
    margin: 0;
}

.locatepe-gallery-divider__separator {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 0;
}

/* Image Carousel Container */
.locatepe-image-carousel {
    width: 100%;
    padding: 60px 0;
    position: relative;
}

.locatepe-image-carousel__inner {
    position: relative;
    width: 100%;
    padding-left: calc((100% - 1320px) / 2);
    padding-right: calc((100% - 1320px) / 2);
}

@media (max-width: 1400px) {
    .locatepe-image-carousel__inner {
        padding-left: 0;
        padding-right: 0;
    }
}

.locatepe-image-carousel-swiper {
    width: 100%;
    overflow: hidden;
}

.locatepe-image-carousel-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.locatepe-image-carousel-swiper .swiper-slide {
    width: 100%;
    height: auto;
    display: flex;
    flex-shrink: 0;
}

.locatepe-image-carousel__item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.locatepe-image-carousel__image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    min-height: 500px;
}

.locatepe-image-carousel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.locatepe-image-carousel__item:hover .locatepe-image-carousel__image img {
    transform: scale(1.05);
}

/* Navigation Butonları (Sol Taraf - Dikey) */
.locatepe-image-carousel__arrows {
    position: absolute;
    left: calc((100% - 1320px) / 2);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 1400px) {
    .locatepe-image-carousel__arrows {
        left: 0;
    }
}

.locatepe-image-carousel__arrow {
    width: 44px;
    height: 44px;
    background: #000000;
    border: none;
    border-radius: 0;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
    outline: none;
}

.locatepe-image-carousel__arrow:hover {
    background: #2a2a2a;
}

.locatepe-image-carousel__arrow:active {
    transform: scale(0.95);
}

.locatepe-image-carousel__arrow:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

.locatepe-image-carousel__arrow svg {
    width: 18px;
    height: 16px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.locatepe-image-carousel__arrow:hover svg {
    fill: #ffffff;
}

.locatepe-image-carousel__arrow--prev svg {
    transform: rotate(180deg);
}

.locatepe-image-carousel__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.locatepe-image-carousel__arrow:disabled:hover {
    background: #000000;
    transform: none;
}

/* Section 4: Galeri Slider - Locatepe Style (Minimal - Birebir) */
.locatepe-gallery-minimal {
    padding: 0;
    background: #ffffff;
    position: relative;
    width: 100%;
}

.locatepe-gallery-divider {
    width: 100%;
    padding: 0;
    margin: 0;
}

.locatepe-gallery-divider__separator {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 0;
}

/* Image Carousel Container (Locatepe Style - Birebir - Sağa Yatık, 1.5 Fotoğraf) */
.locatepe-image-carousel-section {
    width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.locatepe-image-carousel-section__inner {
    position: relative;
    width: 100%;
    padding-left: calc((100% - 1320px) / 2);
    padding-right: 0;
    margin-left: auto;
    max-width: none;
}

@media (max-width: 1400px) {
    .locatepe-image-carousel-section__inner {
        padding-left: 40px;
        padding-right: 0;
    }
}

.locatepe-image-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.locatepe-image-carousel-swiper {
    width: 100%;
    overflow: visible;
    padding-right: 0;
}

.locatepe-image-carousel-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.locatepe-image-carousel-swiper .swiper-slide {
    width: calc(66.666% - 20px);
    height: auto;
    display: flex;
    flex-shrink: 0;
    margin-right: 40px;
}

.locatepe-image-carousel-swiper .swiper-slide:last-child {
    margin-right: 0;
}

@media (max-width: 767px) {
    .locatepe-image-carousel-swiper .swiper-slide {
        width: calc(100% - 20px);
        margin-right: 20px;
    }
}

.locatepe-image-carousel__item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.locatepe-image-carousel__item-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    min-height: 550px;
}

.locatepe-image-carousel__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.locatepe-image-carousel__item-inner:hover .locatepe-image-carousel__item-image img {
    transform: scale(1.05);
}

/* Navigation Butonları (Sol Taraf - Locatepe Style) */
.locatepe-swiper-arrow-wrap {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 1400px) {
    .locatepe-swiper-arrow-wrap {
        left: -50px;
    }
}

@media (max-width: 1200px) {
    .locatepe-swiper-arrow-wrap {
        left: -40px;
    }
}

.locatepe-swiper-arrow {
    width: 44px;
    height: 44px;
    background: #efefef;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
    outline: none;
}

.locatepe-swiper-arrow:hover {
    background: #2a2a2a;
}

.locatepe-swiper-arrow:active {
    transform: scale(0.95);
}

.locatepe-swiper-arrow:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

.locatepe-swiper-arrow svg {
    width: 18px;
    height: 16px;
    fill: #000000;
    transition: fill 0.3s ease;
}

.locatepe-swiper-arrow:hover svg {
    fill: #000000;
}

.locatepe-swiper-arrow-prev svg {
    transform: rotate(180deg);
}

.locatepe-swiper-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.locatepe-swiper-arrow:disabled:hover {
    background: #000000;
    transform: none;
}

/* Section 5: Proje Hakkında */
.locatepe-about {
    padding: 100px 0;
    background: #ffffff;
}

.locatepe-about__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.locatepe-about__subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a8a8a;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.locatepe-about__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.locatepe-about__text {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.locatepe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.locatepe-btn--primary {
    background: #1a1a1a;
    color: #ffffff;
}

.locatepe-btn--primary:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Section 6: Özellikler Kartları */
.locatepe-features {
    padding: 100px 0;
    background: #f8f8f8;
}

.locatepe-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.locatepe-feature-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.locatepe-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.locatepe-feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 28px;
    transition: all 0.3s ease;
}

.locatepe-feature-card:hover .locatepe-feature-card__icon {
    background: #1a1a1a;
    color: #ffffff;
}

.locatepe-feature-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Section 7: İç Görseller Slider */
.locatepe-interior-slider {
    padding: 100px 0;
    background: #ffffff;
}

.locatepe-interior-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.locatepe-interior-swiper .swiper-slide {
    width: auto;
    height: 500px;
}

.locatepe-interior-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.locatepe-interior-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.locatepe-interior-item:hover img {
    transform: scale(1.1);
}

.locatepe-interior-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffffff;
    font-size: 32px;
}

.locatepe-interior-item:hover .locatepe-interior-item__overlay {
    opacity: 1;
}

.locatepe-interior-pagination {
    bottom: 0 !important;
}

.locatepe-interior-next,
.locatepe-interior-prev {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.locatepe-interior-next:hover,
.locatepe-interior-prev:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: scale(1.1);
}

.locatepe-interior-next::after,
.locatepe-interior-prev::after {
    font-size: 18px;
    font-weight: 700;
}

/* Section 8: Harita Bilgisi */
.locatepe-location {
    padding: 100px 0;
    background: #f8f8f8;
}

.locatepe-location__content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.locatepe-location__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.locatepe-location__address {
    font-size: 16px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 20px;
    padding: 12px 24px;
    background: #ffffff;
    border-radius: 999px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.locatepe-location__description {
    font-size: 18px;
    line-height: 1.8;
    color: #6a6a6a;
    font-family: 'Inter', sans-serif;
}

.locatepe-location__map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .locatepe-hero-slide__content {
        left: 40px;
        bottom: 60px;
        max-width: 500px;
    }
    
    .locatepe-details {
        padding: 60px 0;
    }
    
    .locatepe-details__main-title {
        margin-bottom: 24px;
        padding: 0 20px;
        font-size: clamp(32px, 7vw, 64px);
        letter-spacing: -0.5px;
    }
    
    .locatepe-details__divider {
        margin-bottom: 40px;
        max-width: calc(100% - 40px);
    }
    
    .locatepe-details__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .locatepe-details__text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .locatepe-details__right {
        gap: 24px;
    }
    
    .locatepe-details__button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .locatepe-image-carousel-section__inner {
        padding-left: 30px;
        padding-right: 0;
    }
    
    .locatepe-swiper-arrow-wrap {
        left: -30px;
        gap: 6px;
    }
    
    .locatepe-swiper-arrow {
        width: 40px;
        height: 40px;
    }
    
    .locatepe-swiper-arrow svg {
        width: 16px;
        height: 14px;
    }
    
    .locatepe-image-carousel__item-image {
        aspect-ratio: 16 / 10;
        min-height: 450px;
    }
    
    .locatepe-image-carousel-swiper .swiper-slide {
        width: calc(50% - 15px);
        margin-right: 30px;
    }
    
    .locatepe-features__grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .locatepe-image-carousel-section__inner {
        padding-left: 20px;
        padding-right: 0;
    }
    
    .locatepe-swiper-arrow-wrap {
        left: -20px;
        gap: 6px;
    }
    
    .locatepe-swiper-arrow {
        width: 36px;
        height: 36px;
    }
    
    .locatepe-swiper-arrow svg {
        width: 14px;
        height: 12px;
    }
    
    .locatepe-image-carousel-swiper .swiper-slide {
        height: auto;
    }
    
    .locatepe-image-carousel__item-image {
        aspect-ratio: 16 / 10;
        min-height: 400px;
    }
    
    .locatepe-image-carousel-swiper .swiper-slide {
        width: calc(100% - 15px);
        margin-right: 15px;
    }
    
    
    .locatepe-hero-slider {
        height: 100vh;
        min-height: 600px;
        margin-top: 66px;
    }
    
    .locatepe-hero-slide__center {
        padding: 0 20px;
    }
    
    .locatepe-hero-slide__main-title {
        letter-spacing: -1px;
    }
    
    .locatepe-hero-slide__sub-title {
        letter-spacing: 2px;
        margin-top: 4px;
    }
    
    .locatepe-hero-slide__left {
        bottom: 40px;
        left: 20px;
    }
    
    .locatepe-hero-slide__tagline-line {
        font-size: 14px;
    }
    
    .locatepe-hero-slide__right {
        bottom: 40px;
        right: 20px;
    }
    
    .locatepe-hero-slide__cta {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }
    
    .locatepe-hero-slide__cta-icon {
        width: 32px;
        height: 32px;
    }
    
    .locatepe-hero-slide__cta-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .locatepe-hero-pagination {
        bottom: 20px !important;
    }
    
    .locatepe-full-image__container {
        height: 60vh;
        min-height: 400px;
    }
    
    .locatepe-details {
        padding: 60px 0;
    }
    
    .locatepe-gallery-slider,
    .locatepe-about,
    .locatepe-features,
    .locatepe-interior-slider,
    .locatepe-location {
        padding: 60px 0;
    }
    
    .locatepe-gallery-swiper .swiper-slide,
    .locatepe-interior-swiper .swiper-slide {
        height: 300px;
    }
    
    .locatepe-hero-next,
    .locatepe-hero-prev,
    .locatepe-gallery-next,
    .locatepe-gallery-prev,
    .locatepe-interior-next,
    .locatepe-interior-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .locatepe-features__grid {
        grid-template-columns: 1fr;
    }
    
    .locatepe-feature-card {
        padding: 30px 20px;
    }
}

/* ============================================================
   Section 5: Kat Planları (Locatepe Style - Birebir)
   ============================================================ */

.locatepe-floor-plans {
    padding: 0;
    background: #ffffff;
    position: relative;
    width: 100%;
}

.locatepe-floor-plans-divider {
    width: 100%;
    padding: 0;
    margin: 0;
}

.locatepe-floor-plans-divider__separator {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 0;
}

.locatepe-floor-plans__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 60px 0 40px;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

/* Tabs Container */
.locatepe-floor-plans-tabs {
    margin-bottom: 60px;
}

.locatepe-tabs--title {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.locatepe-item--title {
    font-size: 18px;
    font-weight: 600;
    color: #8a8a8a;
    padding: 12px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 999px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    position: relative;
    user-select: none;
}

.locatepe-item--title:hover {
    color: #1a1a1a;
}

.locatepe-item--title.active {
    color: #1a1a1a;
    border-color: #1a1a1a;
    background: #ffffff;
}

/* Tabs Content */
.locatepe-tabs--content {
    position: relative;
}

.locatepe-item--content {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.locatepe-item--content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floor Plan Row */
.locatepe-floor-plan-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Floor Plan Image Column */
.locatepe-floor-plan-col--image {
    position: relative;
}

.locatepe-floor-plan-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.locatepe-floor-plan-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.locatepe-floor-plan-image:hover img {
    transform: scale(1.02);
}

/* Floor Plan Info Column */
.locatepe-floor-plan-col--info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.locatepe-floor-plan-subtitle {
    margin-bottom: 16px;
}

.locatepe-item--subtext {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a8a8a;
    font-family: 'Inter', sans-serif;
}

.locatepe-floor-plan-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.locatepe-floor-plan-description {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

.locatepe-floor-plan-description p {
    margin: 0;
}

.locatepe-floor-plan-description strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Floor Plan Button */
.locatepe-floor-plan-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    max-width: fit-content;
}

.locatepe-floor-plan-button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.locatepe-floor-plan-button:hover {
    color: #000000;
}

.locatepe-floor-plan-button:hover svg {
    transform: translateX(5px);
}

.locatepe--btn-text {
    display: inline-block;
}

/* Responsive */
@media (max-width: 1024px) {
    .locatepe-floor-plan-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .locatepe-floor-plans__title {
        margin: 40px 0 30px;
        font-size: 28px;
    }
    
    .locatepe-tabs--title {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .locatepe-item--title {
        font-size: 16px;
        padding: 10px 24px;
    }
    
    .locatepe-floor-plan-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .locatepe-floor-plan-col--image {
        order: 1;
    }
    
    .locatepe-floor-plan-col--info {
        order: 2;
    }
    
    .locatepe-floor-plan-title {
        font-size: 32px;
    }
    
    .locatepe-floor-plan-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .locatepe-floor-plans__title {
        margin: 30px 0 20px;
        font-size: 24px;
    }
    
    .locatepe-tabs--title {
        gap: 6px;
        margin-bottom: 24px;
    }
    
    .locatepe-item--title {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .locatepe-floor-plan-row {
        gap: 30px;
    }
    
    .locatepe-floor-plan-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .locatepe-floor-plan-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

/* ============================================================
   PROJE ÖZELLİKLERİ (Locatepe Style - 2 Sütunlu Kartlar)
   ============================================================ */
.locatepe-project-features {
    width: 100%;
    overflow: hidden;
}

.locatepe-project-features-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.locatepe-project-features-column {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.locatepe-feature-item {
    width: 100%;
    position: relative;
}

.locatepe-feature-item__inner {
    display: flex;
    width: 100%;
    min-height: 500px;
    position: relative;
}

/* Sol Sütun: Görsel Sol, Kart Sağ */
.locatepe-project-features-column--left .locatepe-feature-item__inner {
    flex-direction: row;
}

/* Sağ Sütun: Kart Sol, Görsel Sağ */
.locatepe-project-features-column--right .locatepe-feature-item__inner {
    flex-direction: row-reverse;
}

.locatepe-feature-item__image-col {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.locatepe-feature-item__image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.locatepe-feature-item__bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.locatepe-feature-item:hover .locatepe-feature-item__bg {
    transform: scale(1.1);
}

.locatepe-feature-item__card-col {
    width: 50%;
    position: relative;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.locatepe-feature-item__border-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.locatepe-feature-item__border {
    position: absolute;
    background: rgba(17, 17, 17, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.locatepe-feature-item__border--top {
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    transition-delay: 0s;
}

.locatepe-feature-item__border--right {
    top: 0;
    right: 0;
    width: 1px;
    height: 0;
    transition-delay: 0.15s;
}

.locatepe-feature-item__border--bottom {
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    transition-delay: 0.3s;
}

.locatepe-feature-item__border--left {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 0;
    transition-delay: 0.45s;
}

.locatepe-feature-item:hover .locatepe-feature-item__border--top {
    width: 100%;
}

.locatepe-feature-item:hover .locatepe-feature-item__border--right {
    height: 100%;
}

.locatepe-feature-item:hover .locatepe-feature-item__border--bottom {
    width: 100%;
}

.locatepe-feature-item:hover .locatepe-feature-item__border--left {
    height: 100%;
}

.locatepe-feature-item__card {
    position: relative;
    width: 100%;
    z-index: 2;
}

.locatepe-feature-item__holder {
    position: relative;
    text-align: center;
}

.locatepe-feature-item__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.locatepe-feature-item__icon svg {
    width: 100%;
    height: 100%;
    
    transition: transform 0.3s ease;
}

.locatepe-feature-item:hover .locatepe-feature-item__icon svg {
    transform: scale(1.1);
}

.locatepe-feature-item__number {
    margin-bottom: 20px;
}

.locatepe-feature-item__number-value {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.locatepe-feature-item__divider {
    width: 40px;
    height: 1px;
    background: #000;
    margin: 0 auto 20px;
}

.locatepe-feature-item__title {
    margin-bottom: 0;
}

.locatepe-feature-item__title a {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.locatepe-feature-item__title a:hover {
    color: #666;
}

.locatepe-feature-item__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 50px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}

.locatepe-feature-item:hover .locatepe-feature-item__backdrop {
    opacity: 1;
    visibility: visible;
}

.locatepe-feature-item__backdrop-title {
    margin-bottom: 20px;
}

.locatepe-feature-item__backdrop-title a {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.locatepe-feature-item__backdrop-content {
    margin-bottom: 30px;
}

.locatepe-feature-item__backdrop-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.locatepe-feature-item__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.locatepe-feature-item__button:hover {
    color: #666;
}

.locatepe-feature-item__button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.locatepe-feature-item__button:hover svg {
    transform: translateX(5px);
}

.locatepe-feature-item__button-text {
    display: inline-block;
}

.locatepe-feature-item__button-text span {
    display: inline-block;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.locatepe-feature-item:hover .locatepe-feature-item__button-text span {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .locatepe-feature-item__card-col {
        padding: 50px 40px;
    }
    
    .locatepe-feature-item__backdrop {
        padding: 50px 40px;
    }
}

@media (max-width: 992px) {
    .locatepe-project-features-container {
        flex-direction: column;
    }
    
    .locatepe-project-features-column {
        width: 100%;
    }
    
    .locatepe-project-features-column--left .locatepe-feature-item__inner,
    .locatepe-project-features-column--right .locatepe-feature-item__inner {
        flex-direction: column;
    }
    
    .locatepe-feature-item__image-col {
        width: 100%;
        height: 400px;
    }
    
    .locatepe-feature-item__card-col {
        width: 100%;
        padding: 50px 40px;
    }
    
    .locatepe-feature-item__backdrop {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .locatepe-feature-item__inner {
        min-height: 400px;
    }
    
    .locatepe-feature-item__image-col {
        height: 300px;
    }
    
    .locatepe-feature-item__card-col {
        padding: 40px 30px;
    }
    
    .locatepe-feature-item__backdrop {
        padding: 40px 30px;
    }
    
    .locatepe-feature-item__number-value {
        font-size: 36px;
    }
    
    .locatepe-feature-item__title a,
    .locatepe-feature-item__backdrop-title a {
        font-size: 18px;
    }
}

/* ============================================================
   GÖRSELLER (Locatepe Style - İç Görseller Section)
   ============================================================ */
.locatepe-interior-gallery {
    width: 100%;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.locatepe-interior-gallery-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Başlık */
.locatepe-interior-gallery-heading {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.locatepe-interior-gallery-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin: 0;
    display: block;
    text-align: center;
    position: relative;
}

.locatepe-interior-gallery-title-inner {
    position: relative;
    display: inline-block;
}

.locatepe-interior-gallery-title-char {
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.locatepe-interior-gallery-title-char.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper Container */
.locatepe-interior-gallery-swiper {
    width: 100%;
    position: relative;
    opacity: 1;
}

.pxl-carousel-inner {
    width: 100%;
    position: relative;
}

.locatepe-interior-gallery-swiper-container {
    width: 100%;
    overflow: visible;
}

.pxl-swiper-wrapper {
    display: flex;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.pxl-swiper-slide {
    width: 470px;
    flex-shrink: 0;
    padding: 0 10px;
}

.locatepe-interior-gallery-item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px) skewY(5deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.locatepe-interior-gallery-item.animated {
    opacity: 1;
    transform: translateY(0) skewY(0);
}

.locatepe-interior-gallery-item-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.locatepe-interior-gallery-item-image:hover {
    transform: scale(1.05);
}

.locatepe-interior-gallery-lightbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.locatepe-interior-gallery-item-image:hover .locatepe-interior-gallery-lightbox {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (min-width: 1920px) {
    .pxl-swiper-slide {
        width: calc(25% - 20px);
    }
}

@media (min-width: 1200px) and (max-width: 1919px) {
    .pxl-swiper-slide {
        width: calc(33.333% - 20px);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .pxl-swiper-slide {
        width: calc(50% - 20px);
    }
    
    .locatepe-interior-gallery-title {
        font-size: 56px;
    }
    
    .locatepe-interior-gallery-item-image {
        height: 400px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .pxl-swiper-slide {
        width: calc(50% - 20px);
    }
    
    .locatepe-interior-gallery-title {
        font-size: 48px;
    }
    
    .locatepe-interior-gallery-item-image {
        height: 350px;
    }
}

@media (max-width: 575px) {
    .pxl-swiper-slide {
        width: calc(100% - 20px);
    }
    
    .locatepe-interior-gallery {
        padding: 60px 0;
    }
    
    .locatepe-interior-gallery-heading {
        margin-bottom: 40px;
    }
    
    .locatepe-interior-gallery-title {
        font-size: 36px;
    }
    
    .locatepe-interior-gallery-item-image {
        height: 300px;
    }
}
