/* ============================================
   HOMEPAGE PROJECTS - MUAZZAM BÜYÜK SLIDER
   ============================================ */

/* Service Section Area - Dark Background */
.homepage-projects-premium.service-section-area {
    background: #1F2A37 !important;
    padding: 100px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.homepage-projects-premium.service-section-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(108, 182, 232, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.homepage-projects-premium .container {
    position: relative;
    z-index: 1;
}

/* Section Title - Premium */
.homepage-projects-premium .title-center-style-one {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.homepage-projects-premium .title-center-style-one .pre {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: var(--color-primary) !important;
    margin-bottom: 12px !important;
}

.homepage-projects-premium .title-center-style-one .title {
    font-size: 52px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 991px) {
    .homepage-projects-premium .title-center-style-one .title {
        font-size: 40px !important;
    }
}

@media (max-width: 767px) {
    .homepage-projects-premium .title-center-style-one .title {
        font-size: 32px !important;
    }
}

/* Projects Slider Wrapper - Full Width */
.homepage-projects-slider-wrapper {
    position: relative;
    padding: 0 120px;
    overflow: visible;
}

.homepage-projects-slider {
    width: 100%;
    height: auto;
    padding-bottom: 70px;
    overflow: visible !important;
}

.homepage-projects-slider .swiper-wrapper {
    align-items: stretch;
    display: flex;
}

/* Project Slide - Büyük ve Gösterişli */
.homepage-projects-slider .swiper-slide {
    height: auto !important;
    min-height: 750px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.homepage-projects-slider .swiper-slide-active {
    transform: scale(1.05);
    z-index: 2;
}

.homepage-projects-slider .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.7;
    transform: scale(0.95);
}

.homepage-project-card-premium {
    background: #ffffff !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    position: relative !important;
    border: 2px solid transparent;
}

.homepage-project-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 182, 232, 0.08) 0%, rgba(201, 162, 39, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 28px;
}

.homepage-project-card-premium::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.homepage-project-card-premium:hover {
    transform: translateY(-20px) scale(1.03) !important;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4), 0 0 80px rgba(108, 182, 232, 0.35), 0 0 40px rgba(201, 162, 39, 0.2) !important;
    border-color: var(--color-primary);
}

.homepage-project-card-premium:hover::before {
    opacity: 1;
}

.homepage-project-card-premium:hover::after {
    opacity: 1;
}

/* Project Image Wrapper - Büyük Görsel */
.homepage-project-image-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 520px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%) !important;
}

.homepage-project-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(31, 42, 55, 0.5) 100%);
    z-index: 1;
    transition: opacity 0.6s ease, background 0.6s ease;
}

.homepage-project-card-premium:hover .homepage-project-image-wrapper::after {
    opacity: 0.7;
    background: linear-gradient(180deg, transparent 0%, rgba(31, 42, 55, 0.75) 100%);
}

.homepage-project-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
    filter: brightness(1) saturate(1);
}

.homepage-project-card-premium:hover .homepage-project-image {
    transform: scale(1.25) !important;
    filter: brightness(1.1) saturate(1.2);
}

.homepage-project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 182, 232, 0.1) 0%, rgba(201, 162, 39, 0.1) 100%);
    color: var(--color-primary);
    font-size: 80px;
}

/* Featured Badge */
.homepage-project-featured {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #d4b02a 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5), 0 0 15px rgba(201, 162, 39, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.homepage-project-card-premium:hover .homepage-project-featured {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.6), 0 0 20px rgba(201, 162, 39, 0.4);
}

.homepage-project-featured i {
    font-size: 11px;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Overlay Button */
.homepage-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.homepage-project-card-premium:hover .homepage-project-overlay {
    opacity: 1;
}

.homepage-project-overlay-btn {
    background: var(--color-primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(108, 182, 232, 0.5);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.homepage-project-card-premium:hover .homepage-project-overlay-btn {
    transform: translateY(0);
}

.homepage-project-overlay-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.homepage-project-card-premium:hover .homepage-project-overlay-btn i {
    transform: translateX(5px);
}

/* Project Content - Dark Footer */
.homepage-project-content {
    background: #1F2A37 !important;
    padding: 40px 35px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    z-index: 2 !important;
}

.homepage-project-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.homepage-project-card-premium:hover .homepage-project-content::before {
    opacity: 1;
}

/* Project Header (Type & Status) */
.homepage-project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
}

.homepage-project-type {
    background: linear-gradient(135deg, rgba(108, 182, 232, 0.25) 0%, rgba(108, 182, 232, 0.15) 100%);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(108, 182, 232, 0.3);
    box-shadow: 0 2px 8px rgba(108, 182, 232, 0.2);
    transition: all 0.3s ease;
}

.homepage-project-card-premium:hover .homepage-project-type {
    background: linear-gradient(135deg, rgba(108, 182, 232, 0.35) 0%, rgba(108, 182, 232, 0.25) 100%);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(108, 182, 232, 0.3);
    transform: translateY(-2px);
}

.homepage-project-status {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.25) 0%, rgba(201, 162, 39, 0.15) 100%);
    color: var(--color-accent);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
}

.homepage-project-card-premium:hover .homepage-project-status {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.35) 0%, rgba(201, 162, 39, 0.25) 100%);
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
    transform: translateY(-2px);
}

/* Project Title */
.homepage-project-title {
    font-size: 36px !important;
    font-weight: 900 !important;
    margin-bottom: 16px !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    transition: all 0.4s ease !important;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.homepage-project-card-premium:hover .homepage-project-title {
    color: var(--color-primary) !important;
    text-shadow: 0 4px 20px rgba(108, 182, 232, 0.4);
    transform: translateX(3px);
}

/* Project Description */
.homepage-project-desc {
    font-size: 17px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 24px !important;
    line-height: 1.75 !important;
    flex: 1;
    font-weight: 400;
    transition: color 0.3s ease;
}

.homepage-project-card-premium:hover .homepage-project-desc {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Project Meta */
.homepage-project-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: auto;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
    transition: all 0.3s ease;
}

.homepage-project-card-premium:hover .homepage-project-meta {
    border-top-color: rgba(108, 182, 232, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.homepage-project-meta i {
    color: var(--color-primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.homepage-project-card-premium:hover .homepage-project-meta i {
    color: var(--color-accent);
    transform: scale(1.2);
}

/* Swiper Navigation - Premium */
.homepage-projects-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.homepage-projects-nav:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, #5aa5d4 100%);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 10px 40px rgba(108, 182, 232, 0.6), 0 0 30px rgba(108, 182, 232, 0.4);
}

.homepage-projects-nav:active {
    transform: translateY(-50%) scale(1.1);
}

.homepage-projects-nav-prev {
    left: 0;
}

.homepage-projects-nav-next {
    right: 0;
}

/* Swiper Pagination - Premium */
.homepage-projects-pagination {
    position: relative !important;
    margin-top: 60px !important;
    bottom: auto !important;
    text-align: center !important;
    padding: 0 20px;
}

.homepage-projects-pagination .swiper-pagination-bullet {
    width: 18px !important;
    height: 18px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    opacity: 1 !important;
    margin: 0 8px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.homepage-projects-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.2);
}

.homepage-projects-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--color-primary) 0%, #5aa5d4 100%) !important;
    width: 55px !important;
    border-radius: 27px !important;
    box-shadow: 0 6px 25px rgba(108, 182, 232, 0.7), 0 0 20px rgba(108, 182, 232, 0.5) !important;
    border-color: var(--color-primary);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1599px) {
    .homepage-projects-slider-wrapper {
        padding: 0 110px;
    }
}

@media (max-width: 1199px) {
    .homepage-projects-premium.service-section-area {
        padding: 80px 0 !important;
    }
    
    .homepage-projects-slider-wrapper {
        padding: 0 90px;
    }
    
    .homepage-projects-slider .swiper-slide {
        min-height: 700px;
    }
    
    .homepage-project-image-wrapper {
        height: 450px !important;
    }
    
    .homepage-project-title {
        font-size: 30px !important;
    }
    
    .homepage-projects-nav {
        width: 65px;
        height: 65px;
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .homepage-projects-premium.service-section-area {
        padding: 60px 0 !important;
    }
    
    .homepage-projects-slider-wrapper {
        padding: 0 75px;
    }
    
    .homepage-projects-slider .swiper-slide {
        min-height: 650px;
        padding: 12px;
    }
    
    .homepage-project-image-wrapper {
        height: 400px !important;
    }
    
    .homepage-project-content {
        padding: 30px 25px !important;
    }
    
    .homepage-project-title {
        font-size: 26px !important;
    }
    
    .homepage-project-desc {
        font-size: 15px !important;
    }
    
    .homepage-projects-nav {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .homepage-projects-premium.service-section-area {
        padding: 50px 0 !important;
    }
    
    .homepage-projects-slider-wrapper {
        padding: 0 65px;
    }
    
    .homepage-projects-slider .swiper-slide {
        min-height: 600px;
        padding: 10px;
    }
    
    .homepage-projects-slider .swiper-slide-active {
        transform: scale(1.02);
    }
    
    .homepage-projects-slider .swiper-slide:not(.swiper-slide-active) {
        opacity: 0.6;
        transform: scale(0.98);
    }
    
    .homepage-project-image-wrapper {
        height: 350px !important;
    }
    
    .homepage-project-content {
        padding: 25px 20px !important;
    }
    
    .homepage-project-title {
        font-size: 24px !important;
    }
    
    .homepage-project-desc {
        font-size: 14px !important;
    }
    
    .homepage-projects-nav {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
    
    .homepage-projects-pagination {
        margin-top: 50px !important;
    }
    
    .homepage-projects-pagination .swiper-pagination-bullet {
        width: 14px !important;
        height: 14px !important;
        margin: 0 6px !important;
    }
    
    .homepage-projects-pagination .swiper-pagination-bullet-active {
        width: 45px !important;
    }
}

@media (max-width: 575px) {
    .homepage-projects-slider-wrapper {
        padding: 0 50px;
    }
    
    .homepage-project-image-wrapper {
        height: 300px !important;
    }
}

