/* Featured Sections Styles */

/* Sustainability, Premium Quality, Smart House Section */
.features {
    padding: 50px 0;
    background-color: #ffffff;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.feature-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.feature-icon i {
    font-size: 22px;
    color: #333;
}

.feature-sub-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    border: 2px solid #333;
}

.feature-card h3 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Process Steps Section */
.process-steps {
    padding: 30px 0;
    background-color: #222;
    color: #fff;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    padding: 10px;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -8px;
    width: 16px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.step-number {
    font-size: 32px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    border: 2px solid #333;
}

.step-icon i {
    font-size: 20px;
    color: #fff;
}

.step h3 {
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: #fff;
}

/* Featured Products Showcase */
.featured-products-showcase {
    padding: 60px 0 0 0;
    background-color: #fff;
}

.featured-products-showcase h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 600;
}

.featured-products-showcase .subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.featured-products {
    display: flex;
    gap: 0;
    margin-top: 0;
}

.featured-product {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 0;
}

.featured-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.8);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    transition: all 0.3s ease;
}

.featured-number {
    font-size: 72px;
    font-weight: 300;
    opacity: 0.5;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.featured-overlay h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

.featured-product:hover img {
    transform: scale(1.05);
}

.featured-product:hover .featured-overlay {
    padding-bottom: 50px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features-grid,
    .featured-products {
        flex-direction: column;
    }
    
    /* Adımlar için özel stil - yan yana görünmesi için */
    .steps-container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .featured-product {
        height: 300px;
    }
}

/* RTL Support */
[dir="rtl"] .step:not(:last-child)::after {
    right: auto;
    left: -10px;
}
