﻿/* ============================================
   Zekeriyaköy Çiçekçilik - KURUMSAL KUTUCUK TASARIMI
   ============================================ */

/* Features Section - Kutucuk Tasarımı */
.features-section {
    margin: 60px auto;
    padding: 0 20px;
}

.feature-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(126, 55, 57, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D88486, #7E3739);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

.feature-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(126, 55, 57, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-image-overlay {
    opacity: 1;
}

.feature-content {
    padding: 30px;
    position: relative;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D88486, #7E3739);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.feature-icon i {
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Manrope', sans-serif;
}

.feature-description {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 25px;
}

.feature-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #D88486, #7E3739);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-button:hover::before {
    left: 100%;
}

.feature-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(126, 55, 57, 0.3);
}

/* Animasyonlar */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-image-wrapper {
        height: 200px;
    }
    
    .feature-content {
        padding: 20px;
    }
    
    .feature-title {
        font-size: 20px;
    }
}

/* ============================================
   SEO METİN BÖLÜMÜ - TASARIM İYİLEŞTİRMESİ
   ============================================ */

.seo-text-section {
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    border-radius: 16px;
    max-width: 900px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.seo-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D88486, #7E3739);
}

.seo-content-wrapper {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 20px;
}

/* Scrollbar Tasarımı */
.seo-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.seo-content-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.seo-content-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D88486, #7E3739);
    border-radius: 10px;
}

.seo-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: #7E3739;
}

.seo-main-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.seo-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D88486, #7E3739);
    border-radius: 2px;
}

.seo-subtitle {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 20px;
    color: #7E3739;
    position: relative;
    padding-bottom: 10px;
}

.seo-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #D88486;
    border-radius: 2px;
}

.seo-text {
    text-align: justify;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.seo-text strong {
    color: #7E3739;
    font-weight: 600;
}

.seo-text em {
    color: #D88486;
    font-style: italic;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .seo-text-section {
        margin: 40px 20px;
        padding: 30px 20px;
    }
    
    .seo-content-wrapper {
        max-height: 350px;
        padding-right: 15px;
    }
    
    .seo-main-title {
        font-size: 24px;
    }
    
    .seo-subtitle {
        font-size: 20px;
    }
    
    .seo-text {
        font-size: 14px;
    }
}
