/* Modern minimalist styling - matching products page */
.btn-dark {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-size: 0.9rem;
}

.btn-dark:hover {
    background-color: #333333;
    border-color: #333333;
    color: #ffffff;
}

.btn-outline-dark {
    background-color: transparent;
    border-color: #e0e0e0;
    color: #333333;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-size: 0.9rem;
}

.btn-outline-dark:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: none;
}

.card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.card-body {
    padding: 1.25rem;
}

.card-img-top {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center;
    background-color: #fafafa;
    padding: 20px;
    border: none;
    transition: all 0.3s ease;
}

.card:hover .card-img-top {
    background-color: #f5f5f5;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-text {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Clean grid spacing */
.row.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* Typography improvements */
.display-4 {
    font-weight: 600;
    color: #333333;
}

.lead {
    color: #666666;
    font-weight: 400;
}

/* Service list specific styling */
.text-dark {
    color: #333333 !important;
}

/* Call to action section */
.bg-light {
    background-color: #fafafa !important;
}

.display-6 {
    font-weight: 600;
    color: #333333;
}

/* Button improvements */
.btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 6px;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .card-img-top {
        height: 240px;
        padding: 15px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-text {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .card-img-top {
        height: 200px;
        padding: 12px;
    }
    
    .card-body {
        padding: 0.875rem;
    }
}

/* Round Service Cards - Image Only */
.service-card-round {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card-round:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.service-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.service-image-round {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-card-round:hover .service-img {
    transform: scale(1.1);
}

.placeholder-image-round {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.placeholder-image-round i {
    font-size: 3rem;
    color: #6c757d;
    opacity: 0.7;
}

.service-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.service-card-round:hover .service-title-overlay {
    opacity: 1;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.service-title-overlay h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Responsive Design for Round Cards */
@media (max-width: 1199.98px) {
    .service-card-round {
        max-width: 280px;
    }
}

@media (max-width: 991.98px) {
    .service-card-round {
        max-width: 250px;
    }
    
    .service-title-overlay h5 {
        font-size: 0.9rem;
        color: white;
    }
}

@media (max-width: 767.98px) {
    .service-card-round {
        max-width: 240px;
    }
    
    .service-title-overlay {
        padding: 15px 10px 10px;
    }
    
    .service-title-overlay h5 {
        font-size: 0.9rem;
        color: white;
    }
    
    .placeholder-image-round i {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .service-card-round {
        max-width: 220px;
    }
    
    .service-title-overlay {
        padding: 12px 8px 8px;
    }
    
    .service-title-overlay h5 {
        font-size: 0.85rem;
        color: white;
    }
    
    .placeholder-image-round i {
        font-size: 2rem;
    }
} 