/* Enhanced Styling for Front Page Sections */

/* Hero Section Improvements */
.dlm-hero-highlights {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.dlm-hero-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.dlm-hero-highlight span {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Service Area Section */
.dlm-service-area-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.dlm-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.dlm-section-header h2 {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.dlm-section-subtitle {
    color: #666;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.dlm-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.dlm-city-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #9e3235;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dlm-city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dlm-city-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.dlm-city-header i {
    color: #9e3235;
    font-size: 18px;
}

.dlm-city-header h3 {
    color: #2c3e50;
    font-size: 1.2em;
    margin: 0;
    font-weight: 600;
}

.dlm-city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dlm-city-list span {
    background: #e8f4f8;
    color: #2c3e50;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #d1ecf1;
}

.dlm-establishment-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #9e3235;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.dlm-establishment-icon {
    background: #9e3235;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.dlm-establishment-text strong {
    color: #2c3e50;
    font-size: 1.1em;
    display: block;
    margin-bottom: 8px;
}

.dlm-establishment-text p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dlm-cities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dlm-establishment-info {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .dlm-hero-highlights {
        justify-content: center;
        gap: 10px;
    }
    
    .dlm-hero-highlight span {
        font-size: 13px;
    }
    
    .dlm-section-header h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .dlm-city-card {
        padding: 20px;
    }
    
    .dlm-city-list span {
        font-size: 13px;
        padding: 3px 10px;
    }
    
    .dlm-establishment-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}