:root { 
    --premium-gold: #b3834d; 
    --section-bg: #101010; /* Tasarımdaki derin siyah arka plan */
}

.laminat-section { 
    background-color: var(--section-bg); 
    padding: 100px 0; 
    color: white; 
    overflow: hidden; /* Animasyon taşmalarını gizler */
}

/* Site sınırlarını koruyan 1600px kapsayıcı */
.laminat-container { 
    max-width: 1600px; 
    margin: 0 auto; 
    padding: 0 20px; 
    display: flex; 
    align-items: center; 
    gap: 60px; 
}

/* ================== SOL: GÖRSEL ALANI ================== */
.laminat-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.laminat-image-col img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); /* Görsele derinlik katar */
}

/* ================== SAĞ: İÇERİK ALANI ================== */
.laminat-content-col {
    flex: 1;
}

.laminat-subtitle {
    color: var(--premium-gold);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.laminat-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.laminat-desc {
    color: #a0a0a0;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 90%;
}

/* ================== ÖZELLİKLER GRID ================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Sütunlu dizilim */
    gap: 40px 30px; /* Satır ve sütun boşlukları */
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: 1px solid var(--premium-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-gold);
    font-size: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--premium-gold);
    color: #121212;
    box-shadow: 0 0 15px rgba(179, 131, 77, 0.4);
}

.feature-text h5 {
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: 600;
    color: #fff;
}

.feature-text p {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* ================== ANİMASYONLAR ================== */
.animate-slide-right {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s; /* Hafif gecikmeli başlar */
}

.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ================== MOBİL UYUMLULUK ================== */
@media (max-width: 1100px) {
    .laminat-container { flex-direction: column; text-align: center; }
    .laminat-desc { max-width: 100%; margin: 0 auto 40px auto; }
    .features-grid { text-align: left; }
    .animate-slide-right { transform: translateY(50px); }
    .animate-slide-left { transform: translateY(50px); }
}

@media (max-width: 768px) {
    .laminat-title { font-size: 32px; }
    .features-grid { grid-template-columns: 1fr; gap: 30px; } /* Mobilde özellikler tek sütun */
    .feature-item { align-items: center; }
}