/* =============================
   Detailed Content Section Styles
   ============================= */

.detailed-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.content-article {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.article-meta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.article-meta .author,
.article-meta .date {
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-content {
    padding: 40px 30px;
}

.article-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-right: 4px solid #2c5aa0;
    border-radius: 8px;
}

.detailed-content .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.detailed-content .service-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detailed-content .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.detailed-content .service-item h3 {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    padding: 15px 20px;
    margin: 0;
    font-size: 1rem;
    text-align: center;
}

.detailed-content .service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.renovation-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.type-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.type-card:hover {
    border-color: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.1);
}

.type-card h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.additional-services,
.specialized-services {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-column ul {
    list-style: none;
    padding: 0;
}

.service-column li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-right: 20px;
}

.service-column li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #28a745;
    font-weight: bold;
}

.service-column li:last-child {
    border-bottom: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-card h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

.detailed-content .contact-info {
    margin: 30px 0;
    text-align: center;
}

.detailed-content .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.detailed-content .contact-item:hover {
    transform: scale(1.05);
}

.detailed-content .contact-item i {
    font-size: 18px;
}

.related-keywords {
    margin: 40px 0;
}

.keywords-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.keyword {
    background: #e9ecef;
    color: #495057;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.keyword:hover {
    background: #2c5aa0;
    color: white;
    cursor: pointer;
}

.tags-section {
    margin: 40px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* =============================
   Company Information Section
   ============================= */

.company-info {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
}

.company-info .section-title {
    color: white;
}

.company-info .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.company-services {
    margin: 40px 0;
}

.company-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.company-services .service-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.company-services .service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.company-services .service-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.company-services .service-item span {
    display: block;
    font-weight: 600;
}

.contact-details {
    margin-top: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.contact-details .contact-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details .contact-item i {
    font-size: 1.5rem;
    color: #ffd700;
    width: 30px;
}

.contact-details .contact-item div strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-details .contact-item div span {
    font-size: 1rem;
    font-weight: 600;
}

/* =============================
   Responsive Design for New Sections
   ============================= */

@media (max-width: 768px) {
    .detailed-content {
        padding: 60px 0;
    }
    
    .article-content {
        padding: 30px 20px;
    }
    
    .article-meta {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .detailed-content .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .renovation-types {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .keywords-grid {
        justify-content: center;
    }
    
    .company-services .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-content .lead {
        padding: 15px;
        font-size: 1rem;
    }
    
    .type-card,
    .benefit-card {
        padding: 20px;
    }
    
    .additional-services,
    .specialized-services,
    .tags-section {
        padding: 20px;
    }
    
    .detailed-content .contact-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .company-services .service-item {
        padding: 15px;
    }
    
    .contact-details .contact-item {
        padding: 15px;
    }
}