/* Page: seller-services/index.blade.php */

.services-section {
        padding: 3rem 0;
        min-height: calc(100vh - 200px);
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--text-white);
        text-align: center;
        margin-bottom: 3rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .section-title i {
        color: var(--accent-red);
        font-size: 2.5rem;
    }
    
    .service-card {
        background: var(--dark-nav);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    
    .service-card:hover {
        transform: translateY(-8px);
        border-color: #ef4444;
        box-shadow: 0 15px 40px rgba(239, 68, 68, 0.5);
    }
    
    .service-image {
        height: 250px;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(255, 140, 0, 0.2));
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
    
    .service-card:hover .service-image img {
        transform: scale(1.05);
    }
    
    .service-content {
        padding: 2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .service-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--text-white);
        margin-bottom: 1rem;
        text-transform: uppercase;
    }
    
    .service-description {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        flex-grow: 1;
        line-height: 1.6;
    }
    
    .service-features {
        margin-bottom: 1.5rem;
    }
    
    .service-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .service-features li {
        color: var(--text-light);
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
    }
    
    .service-features li:before {
        content: "\f00c";
        font-family: "bootstrap-icons";
        position: absolute;
        left: 0;
        color: var(--success);
        font-weight: bold;
    }
    
    .service-price {
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--accent-red);
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .service-contact {
        margin-top: auto;
        padding-top: 1.5rem;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        color: var(--text-light);
    }
    
    .contact-item i {
        color: var(--accent-red);
        font-size: 1.2rem;
    }
    
    .contact-item a {
        color: var(--accent-red);
        text-decoration: none;
    }
    
    .contact-item a:hover {
        text-decoration: underline;
    }
    
    .service-btn {
        width: 100%;
        background: linear-gradient(135deg, #ef4444, #dc2626);
        border: 2px solid #ffd700;
        border-radius: 8px;
        padding: 12px 20px;
        font-weight: 700;
        font-size: 0.95rem;
        color: white;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s;
        display: block;
        margin-top: 1rem;
    }
    
    .service-btn:hover {
        background: linear-gradient(135deg, #dc2626, #ef4444);
        border-color: #ffed4e;
        transform: translateY(-2px);
        color: white;
    }
    
    .empty-state {
        text-align: center;
        padding: 4rem 2rem;
        background: var(--dark-nav);
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .empty-state i {
        font-size: 5rem;
        color: var(--text-light);
        margin-bottom: 1.5rem;
        opacity: 0.5;
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .service-image {
            height: 200px;
        }
        
        .service-content {
            padding: 1.5rem;
        }
    }
