/* =========================================================
   FIXED SERVICE CARDS LAYOUT
   Clean and properly sized service cards
   ========================================================= */

/* Services Container */
.services-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 100px 30px 50px !important;
}

/* Section Header */
.section-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.section-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FFD700, #B8860B) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.section-subtitle {
    color: #8B7355 !important;
    font-size: 1.1rem !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* Services Grid */
.services-showcase {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 20px !important;
}

/* Service Card */
.service-item {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98),
        rgba(255, 248, 220, 0.95)) !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.1) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    width: 100% !important;
}

.service-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.15) !important;
}

/* Service Content */
.service-content {
    padding: 20px !important;
    display: flex !important;
    gap: 15px !important;
    align-items: flex-start !important;
}

/* Service Icon */
.service-icon {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #FFD700 !important;
}

.service-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Service Info */
.service-info {
    flex: 1 !important;
}

/* Service Header */
.service-header {
    margin-bottom: 12px !important;
}

.service-header h3 {
    color: #6B5637 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

/* Service Description */
.service-description {
    color: #8B7355 !important;
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
}

/* Service Details */
.service-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

/* Feature List */
.feature-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.feature-item {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    gap: 10px !important;
}

.feature-item i {
    color: #FFD700 !important;
    font-size: 0.9rem !important;
}

.feature-item span {
    color: #6B5637 !important;
    font-size: 0.8rem !important;
}

/* Service Button */
.service-btn {
    background: linear-gradient(135deg, #FFD700, #B8860B) !important;
    color: white !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    align-self: flex-start !important;
}

.service-btn:hover {
    background: linear-gradient(135deg, #B8860B, #8B6914) !important;
    transform: translateX(3px) !important;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .services-showcase {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 1200px) {
    .services-showcase {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .services-showcase {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .service-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .service-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .feature-list {
        align-items: center !important;
    }

    .feature-item {
        width: 100% !important;
        justify-content: center !important;
    }

    .service-btn {
        margin: 0 auto !important;
    }
}

@media (max-width: 550px) {
    .services-showcase {
        grid-template-columns: 1fr !important;
        padding: 0 5px !important;
    }

    .services-container {
        padding: 100px 15px 50px !important;
    }
}