/* ============================================
   MODERN ABOUT PAGE - FLOENS STYLE
   ============================================ */

/* About Section - Beyaz Arka Plan */
.about-section-modern {
    background: #ffffff;
    padding: 100px 0;
}

/* Grid Layout - Sol: Görseller, Sağ: İçerik */
.about-modern-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sol Taraf - Görsel Kolaj */
.about-images-collage {
    position: sticky;
    top: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.collage-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-large {
    grid-column: 1 / -1;
    height: 280px;
}

.collage-small {
    height: 200px;
}

/* Award Badge */
.award-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 10;
}

.award-icon {
    font-size: 32px;
    margin-bottom: 5px;
}

.award-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4834f;
    text-align: center;
    line-height: 1.2;
}

/* Fayans Pattern Overlay */
.tile-pattern {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Sağ Taraf - İçerik */
.about-content-modern {
    color: #2c2c2c;
}

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4834f;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #d4834f;
}

/* Başlık */
.about-content-modern h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

/* Highlight Text */
.highlight-text {
    color: #d4834f;
    font-weight: 600;
}

/* Paragraflar */
.about-content-modern p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 20px;
}

.lead-paragraph {
    font-size: 18px;
    color: #444444;
    font-weight: 500;
    margin-bottom: 30px;
}

/* İkon Listesi */
.icon-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.icon-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(212, 131, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle svg,
.icon-circle span {
    font-size: 24px;
    color: #d4834f;
}

.icon-list-text {
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 500;
}

/* İki Kolonlu Özellikler */
.features-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.feature-box {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon span {
    font-size: 20px;
}

.feature-content h4 {
    font-size: 16px;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

/* CTA Button */
.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d4834f;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.about-cta-button:hover {
    background: #c27340;
    transform: translateX(5px);
}

.about-cta-button svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images-collage {
        position: relative;
        top: 0;
    }
    
    .about-content-modern h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-section-modern {
        padding: 60px 0;
    }
    
    .about-images-collage {
        grid-template-columns: 1fr;
    }
    
    .collage-large,
    .collage-small {
        height: 250px;
    }
    
    .features-two-col {
        grid-template-columns: 1fr;
    }
    
    .about-content-modern h2 {
        font-size: 28px;
    }
}
